forked from Meisterschueler/ogn-python
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
71 lines (66 loc) · 2.15 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
#!/usr/bin/env python3
from os import path
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='ogn-python',
version='0.5.0',
description='A database backend for the Open Glider Network',
long_description=long_description,
url='https://github.com/glidernet/ogn-python',
author='Konstantin Gründger aka Meisterschueler, Fabian P. Schmidt aka kerel, Dominic Spreitz',
author_email='[email protected]',
license='AGPLv3',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: GIS',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9-dev'
],
keywords='gliding ogn',
packages=find_packages(exclude=['tests', 'tests.*']),
install_requires=[
'Flask==2.0.1',
'Flask-SQLAlchemy==2.5.1',
'Flask-Migrate==3.0.1',
'Flask-Bootstrap==3.3.7.1',
'Flask-WTF==0.15.1',
'Flask-Caching==1.10.1',
'Flask-Profiler==1.8.1',
'geopy==2.2.0',
'celery==4.4.7',
'Flask-Redis==0.4.0',
'redis==3.5.3',
'aerofiles==1.0.0',
'geoalchemy2==0.9.4',
'shapely==1.7.1',
'ogn-client==1.2.1',
'mgrs==1.4.2',
'psycopg2-binary==2.9.2',
'xmlunittest==0.5.0',
'flower==0.9.7',
'tqdm==4.62.3',
'requests==2.26.0',
'matplotlib==3.5.0',
'bokeh==2.4.1',
'pandas==1.3.4',
'flydenity==0.1.6',
'gunicorn==20.1.0'
],
test_require=[
'pytest==5.0.1',
'flake8==1.1.1',
'xmlunittest==0.4.0',
],
zip_safe=False
)