-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
52 lines (48 loc) · 1.59 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
from setuptools import setup
version = "0.2.1"
requirements = [
'PyYAML',
'requests',
'voluptuous'
]
with open("README.md", "r") as f:
readme = f.read()
setup(name='pkictl',
version=version,
description='A command-line utility for declaratively provisioning PKI in Hashicorp Vault',
long_description=readme,
long_description_content_type="text/markdown",
url='http://github.com/bincyber/pkictl',
author='@bincyber',
license='MPL',
keywords="vault pki kubernetes public key infrastructure security",
packages=['pkictl'],
python_requires='>=3.6',
platforms=['any'],
install_requires=requirements,
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Natural Language :: English',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Operating System :: MacOS',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Security',
'Topic :: Security :: Cryptography',
'Topic :: System :: Systems Administration',
'Topic :: Utilities'
],
entry_points = {
'console_scripts': ['pkictl=pkictl.pkictl:main']
},
test_suite='nose2.collector.collector',
tests_require=['nose2']
)