python-ogn-client/setup.py

51 wiersze
1.6 KiB
Python
Czysty Zwykły widok Historia

#!/usr/bin/env python3
from os import path
2016-03-29 13:13:16 +00:00
from setuptools import setup, find_packages
2016-02-28 11:35:10 +00:00
from ogn.client.settings import PACKAGE_VERSION
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-client',
version=PACKAGE_VERSION,
description='A python module for the Open Glider Network',
long_description=long_description,
2019-06-07 17:30:36 +00:00
long_description_content_type='text/markdown',
2016-02-28 11:35:10 +00:00
url='https://github.com/glidernet/python-ogn-client',
author='Konstantin Gründger aka Meisterschueler, Fabian P. Schmidt aka kerel',
author_email='kerel-fs@gmx.de',
license='AGPLv3',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: GIS',
'License :: OSI Approved :: GNU Affero General Public License v3',
2018-01-12 17:49:57 +00:00
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.5',
2017-10-02 07:04:54 +00:00
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
],
2020-08-30 12:21:52 +00:00
keywords=['gliding', 'ogn'],
2016-03-29 13:13:16 +00:00
packages=['ogn.{}'.format(package) for package in find_packages(where='ogn')],
2018-01-12 17:49:57 +00:00
python_requires='>=3',
2016-02-28 11:35:10 +00:00
install_requires=[],
extras_require={
'dev': [
'nose==1.3.7',
'coveralls==3.3.1',
'flake8==4.0.1'
]
},
zip_safe=False
)