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',
|
2016-03-18 21:54:22 +00:00
|
|
|
version='0.2.1',
|
|
|
|
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',
|
|
|
|
author='Konstantin Gründger aka Meisterschueler, Fabian P. Schmidt aka kerel',
|
|
|
|
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=[
|
|
|
|
'SQLAlchemy==1.0.8',
|
|
|
|
'geopy==1.11.0',
|
|
|
|
'manage.py==0.2.10',
|
|
|
|
'celery[redis]>=3.1,<3.2',
|
2016-03-18 21:54:22 +00:00
|
|
|
'alembic==0.8.3',
|
2016-04-22 08:44:39 +00:00
|
|
|
'aerofiles==0.3',
|
2016-04-24 17:34:25 +00:00
|
|
|
'geoalchemy2==0.3.0',
|
|
|
|
'shapely==1.5.15',
|
2016-06-14 21:33:59 +00:00
|
|
|
'ogn-client==0.3.0',
|
|
|
|
'psycopg2==2.6.1'
|
2016-01-06 00:30:01 +00:00
|
|
|
],
|
|
|
|
extras_require={
|
|
|
|
'dev': [
|
|
|
|
'nose==1.3.7',
|
|
|
|
'coveralls==0.4.4',
|
|
|
|
'flake8==2.5.0'
|
2016-01-29 01:54:51 +00:00
|
|
|
]
|
2016-01-06 00:30:01 +00:00
|
|
|
},
|
|
|
|
zip_safe=False
|
|
|
|
)
|