-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 936 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 936 Bytes
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
"""Python installation definition for x5092json"""
from setuptools import setup
setup(
name="x5092json",
version="1.0.3",
description="x5092json Utility",
author="Joshua Crowgey",
author_email="jcrowgey@uw.edu",
url="https://github.com/jcrowgey/x5092json",
license="BSD",
packages=["x5092json"],
data_files=[("man/man1", ["doc/man1/x5092json.1"])],
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
python_requires=">=3.5",
install_requires=["asn1", "cryptography==2.5", "pyOpenSSL"],
entry_points={
"console_scripts": ["x5092json = x5092json.x509parser:main"]
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
)