ogn-python/setup.py

59 wiersze
1.7 KiB
Python
Czysty Zwykły widok Historia

#!/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',
2017-06-04 09:53:21 +00:00
version='0.4.0',
description='A database backend for the Open Glider Network',
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',
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=[
2018-10-21 15:34:03 +00:00
'SQLAlchemy==1.2.12',
'geopy==1.17.0',
'manage.py==0.2.10',
'celery[redis]>=3.1,<3.2',
2018-10-21 15:34:03 +00:00
'alembic==1.0.0',
'aerofiles==0.4.1',
'geoalchemy2==0.5.0',
2017-12-04 07:54:17 +00:00
'shapely>=1.5.17,<1.6',
2018-10-21 15:34:03 +00:00
'ogn-client==0.9.1',
2019-01-03 17:58:47 +00:00
'psycopg2-binary==2.7.6.1',
2019-01-03 15:54:06 +00:00
'mgrs==1.3.5',
'xmlunittest==0.5.0',
'tqdm==4.28.1'
],
extras_require={
'dev': [
'nose==1.3.7',
2017-12-02 11:43:34 +00:00
'coveralls==1.2',
'flake8==3.5.0',
'xmlunittest==0.4.0'
]
},
zip_safe=False
)