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-05 04:33:18 +00:00
|
|
|
'Flask==1.1.0',
|
2019-06-08 07:45:42 +00:00
|
|
|
'flask-sqlalchemy==2.4.0',
|
2019-06-09 09:31:44 +00:00
|
|
|
'Flask-Migrate==2.5.2',
|
2019-02-10 17:39:06 +00:00
|
|
|
'flask-bootstrap==3.3.7.1',
|
2019-02-10 13:00:35 +00:00
|
|
|
'flask-nav==0.6',
|
2019-04-02 21:48:24 +00:00
|
|
|
'flask-wtf==0.14.2',
|
2019-06-09 09:48:22 +00:00
|
|
|
'flask-caching==1.7.2',
|
2019-06-09 09:32:25 +00:00
|
|
|
'geopy==1.20.0',
|
2019-04-25 06:37:23 +00:00
|
|
|
'celery==4.3.0',
|
|
|
|
'redis==3.2.1',
|
|
|
|
'aerofiles==1.0.0',
|
2019-06-12 06:27:41 +00:00
|
|
|
'geoalchemy2==0.6.3',
|
2019-04-25 06:37:23 +00:00
|
|
|
'shapely==1.6.4.post2',
|
2019-06-10 16:16:47 +00:00
|
|
|
'ogn-client==0.9.4',
|
2019-06-14 06:21:17 +00:00
|
|
|
'psycopg2-binary==2.8.3',
|
2019-01-03 15:54:06 +00:00
|
|
|
'mgrs==1.3.5',
|
|
|
|
'xmlunittest==0.5.0',
|
2019-06-19 04:33:48 +00:00
|
|
|
'tqdm==4.32.2',
|
2019-06-09 09:48:44 +00:00
|
|
|
'requests==2.22.0',
|
2016-01-06 00:30:01 +00:00
|
|
|
],
|
|
|
|
extras_require={
|
|
|
|
'dev': [
|
|
|
|
'nose==1.3.7',
|
2019-06-17 06:20:07 +00:00
|
|
|
'coveralls==1.8.1',
|
2019-06-09 09:32:47 +00:00
|
|
|
'flake8==3.7.7',
|
2017-12-21 21:43:22 +00:00
|
|
|
'xmlunittest==0.4.0'
|
2016-01-29 01:54:51 +00:00
|
|
|
]
|
2016-01-06 00:30:01 +00:00
|
|
|
},
|
|
|
|
zip_safe=False
|
|
|
|
)
|