forked from tkuester/taky
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (33 loc) · 1.07 KB
/
Copy pathsetup.py
File metadata and controls
35 lines (33 loc) · 1.07 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
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="tpkuester@gmail.com",
setup_requires=["setuptools_scm"],
install_requires=["lxml", "dateutils", "Flask", "pyopenssl", "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",
]
},
)