-
Notifications
You must be signed in to change notification settings - Fork 172
/
setup.py
84 lines (83 loc) · 2.56 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
import glob
from setuptools import find_packages, setup
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md")) as f:
long_description = f.read()
setup(
name="FreeTAKServer",
packages=find_packages(
include=["FreeTAKServer", "FreeTAKServer.*", "*.json", "*.ini", "*.conf"]
),
version="0.2.1.0",
license="EPL-2.0",
description="An open source server for the TAK family of applications.",
# long_description=long_description,
# long_description_content_type="text/markdown",
author="FreeTAKTeam",
author_email="[email protected]",
url="https://github.com/FreeTAKTeam/FreeTakServer",
download_url="https://github.com/FreeTAKTeam/FreeTakServer/releases",
keywords=["TAK", "OPENSOURCE"],
include_package_data=True,
install_requires=[
"bitarray",
"click==8.1.7",
"colorama==0.4.4",
"cryptography==36.0.2",
"bcrypt==3.1.7",
"defusedxml==0.7.1",
"dnspython==2.2.1",
"eventlet==0.33.1",
"Flask==3.0.2",
"Flask-Cors==3.0.9",
"Flask-HTTPAuth==4.8.0",
"Flask-Login==0.6.3",
"Flask-SocketIO==5.3.6",
"Flask-SQLAlchemy==3.1.1",
"Flask-Classy==0.6.10",
"geographiclib==1.52",
"geopy==2.2.0",
"greenlet==3.0.3",
"itsdangerous==2.1.2",
"testresources==2.0.1",
"Jinja2==3.1.3",
"lxml",
"MarkupSafe==2.1.5",
"monotonic==1.6",
"pathlib2==2.3.7.post1",
"protobuf==3.18.3",
"psutil==5.9.4",
"pykml==0.2.0",
"python-engineio==4.9.0",
"python-socketio==4.6.0",
"PyYAML==6.0.1",
"ruamel.yaml==0.17.21",
"ruamel.yaml.clib==0.2.8",
"six==1.16.0",
"SQLAlchemy==2.0.28",
"tabulate==0.8.7",
"Werkzeug==3.0.1",
"WTForms==2.3.3",
"pyOpenSSL==22.0.0",
"qrcode==7.3.1",
"pillow==9.3.0",
"asyncio==3.4.3",
"xmltodict",
"pyzmq",
"digitalpy>=0.3.13.7",
"opentelemetry-sdk",
"PyJWT"
],
extras_require={
"ui": ["FreeTAKServer_UI"],
"dev": ["pytak==5.4.1", "pytest==7.2.0", "pytest-asyncio==0.20.1"],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: Eclipse Public License 2.0 (EPL-2.0)",
"Programming Language :: Python :: 3.8",
],
)