-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
50 lines (48 loc) · 1.6 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
from setuptools import setup, find_packages
desc = "A short-lived certificate tool based on the Zero Trust network mode"
setup(
name="mtls-server",
author="Danny Grove",
author_email="[email protected]",
url="https://github.com/drGrove/mtls-server",
description=desc,
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
project_urls={
"Homepage": "https://github.com/drGrove/mtls-server",
"Source": "https://github.com/drGrove/mtls-server",
"Tracker": "https://github.com/drGrove/mtls-server/issues",
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Internet",
"Topic :: Security :: Cryptography",
"Topic :: Security",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3 :: Only",
],
python_requires='>=3.6',
setup_requires=["setuptools_scm"],
use_scm_version=True,
packages=find_packages(exclude=["test"]),
entry_points={
"console_scripts": [
"mtls-server = mtls_server.server:main"
]
},
install_requires=[
"Flask",
"Jinja2",
"cryptography",
"psycopg2-binary",
"python-gnupg",
"uWSGI",
],
zip_safe=True
)