-
Notifications
You must be signed in to change notification settings - Fork 42
/
setup.py
43 lines (41 loc) · 1.18 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="taky",
python_requires=">=3.6",
use_scm_version=True,
author="Tim K",
author_email="[email protected]",
tests_require=["mock"],
setup_requires=["setuptools_scm"],
install_requires=[
"lxml>=4.4.0",
"cryptography>=38.0.0",
"dateutils",
"Flask~=2.0",
"gunicorn",
"redis",
],
description="A simple TAK server and COT router",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/tkuester/taky",
packages=find_packages(),
test_suite="tests",
include_package_data=True,
zip_safe=False,
classifiers=[
"Topic :: Communications",
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
],
entry_points={
"console_scripts": [
"taky = taky.cot.__main__:main",
"taky_dps = taky.dps.__main__:main",
"takyctl = taky.cli.__main__:main",
]
},
)