forked from erdc/dodcerts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (35 loc) · 1.08 KB
/
setup.py
File metadata and controls
38 lines (35 loc) · 1.08 KB
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
from setuptools import setup
import versioneer
requirements = [
'cryptography',
]
entry_points = [
'dodcerts = dodcerts.cli:cli',
]
setup(
name='dodcerts',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="DoD Certificate Chain",
long_description=open('README.rst', 'r').read(),
long_description_content_type='text/x-rst',
author="Kevin Winters",
author_email='Kevin.D.Winters@erdc.dren.mil',
url='https://github.com/erdc/dodcerts',
license='BSD',
packages=['dodcerts'],
package_data={'dodcerts': ['dod-ca-certs.pem'],},
entry_points={'console_scripts': entry_points,},
install_requires=requirements,
keywords='dodcerts',
python_requires='>=3.6',
classifiers=[
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Development Status :: 5 - Production/Stable',
]
)