forked from FreeTAKTeam/FreeTakServer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (46 loc) · 1.57 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
from setuptools import find_packages, setup
from os import path
this_directory = path.abspath(path.dirname(__file__))
version = '1.7.5'
setup(
name='FreeTAKServer',
packages=find_packages(include = ['FreeTAKServer', 'FreeTAKServer.*']),
version=version,
license='Eclipse License',
description='An open source server for the TAK family of applications.',
long_description='An open source server for the TAK family of applications.',
long_description_content_type='text/markdown',
author='FreeTAKTeam',
author_email='[email protected]',
url='https://github.com/FreeTAKTeam/FreeTakServer',
download_url=f'https://github.com/FreeTAKTeam/FreeTakServer/archive/'+version+'.tar.gz',
keywords=['TAK', 'OPENSOURCE'],
install_requires=[
'flask==1.1.2',
'lxml>=4.6.3',
'pathlib==1.0.1',
'tabulate==0.8.7',
'sqlalchemy==1.3.20',
'setuptools',
'Flask_SQLAlchemy==2.4.4',
'flask-cors==3.0.9',
'flask-socketio==4.3.1',
'eventlet==0.29.0',
'flask_httpauth==4.2.0',
'protobuf==3.14.0',
'python-socketio==4.6.0',
'python-engineio==3.13.2',
'jinja2>=2.11.3',
'psutil',
'geopy',
'defusedxml'
],
extras_require = {'ui': ['FreeTAKServer_UI']},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
],
)