2016-01-06 00:30:01 +00:00
|
|
|
#!/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',
|
2019-04-25 06:37:23 +00:00
|
|
|
version='0.5.0',
|
2016-03-18 21:54:22 +00:00
|
|
|
description='A database backend for the Open Glider Network',
|
2016-01-06 00:30:01 +00:00
|
|
|
long_description=long_description,
|
|
|
|
url='https://github.com/glidernet/ogn-python',
|
2017-06-04 09:53:21 +00:00
|
|
|
author='Konstantin Gründger aka Meisterschueler, Fabian P. Schmidt aka kerel, Dominic Spreitz',
|
2016-01-06 00:30:01 +00:00
|
|
|
author_email='kerel-fs@gmx.de',
|
|
|
|
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.4',
|
|
|
|
'Programming Language :: Python :: 3.5',
|
|
|
|
],
|
|
|
|
keywords='gliding ogn',
|
|
|
|
packages=find_packages(exclude=['tests', 'tests.*']),
|
|
|
|
install_requires=[
|
2019-07-09 04:44:43 +00:00
|
|
|
'Flask==1.1.1',
|
2019-09-25 04:30:44 +00:00
|
|
|
'Flask-SQLAlchemy==2.4.1',
|
2019-06-09 09:31:44 +00:00
|
|
|
'Flask-Migrate==2.5.2',
|
2019-08-30 06:15:29 +00:00
|
|
|
'Flask-Bootstrap==3.3.7.1',
|
|
|
|
'Flask-WTF==0.14.2',
|
2019-11-25 04:31:59 +00:00
|
|
|
'Flask-Caching==1.8.0',
|
2019-06-09 09:32:25 +00:00
|
|
|
'geopy==1.20.0',
|
2019-12-16 04:32:58 +00:00
|
|
|
'celery==4.4.0',
|
2019-11-24 14:45:04 +00:00
|
|
|
'redis==3.3.11',
|
2019-04-25 06:37:23 +00:00
|
|
|
'aerofiles==1.0.0',
|
2019-06-12 06:27:41 +00:00
|
|
|
'geoalchemy2==0.6.3',
|
2020-01-29 04:33:06 +00:00
|
|
|
'shapely==1.7.0',
|
2020-01-20 04:33:26 +00:00
|
|
|
'ogn-client==0.9.6',
|
2019-10-21 04:38:59 +00:00
|
|
|
'psycopg2-binary==2.8.4',
|
2019-01-03 15:54:06 +00:00
|
|
|
'mgrs==1.3.5',
|
|
|
|
'xmlunittest==0.5.0',
|
2019-11-26 21:43:06 +00:00
|
|
|
'flower==0.9.3',
|
2020-01-27 04:27:23 +00:00
|
|
|
'tqdm==4.42.0',
|
2019-11-25 04:31:43 +00:00
|
|
|
'requests==2.22.0',
|
2016-01-06 00:30:01 +00:00
|
|
|
],
|
2019-09-09 19:36:33 +00:00
|
|
|
test_require=[
|
|
|
|
'pytest==5.0.1',
|
|
|
|
'flake8==1.1.1',
|
|
|
|
'xmlunittest==0.4.0',
|
|
|
|
],
|
2016-01-06 00:30:01 +00:00
|
|
|
zip_safe=False
|
|
|
|
)
|