-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (33 loc) · 1.42 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env python3
"""
Copyright (C) 2019 Oto Kaláb
Contact: kalab.oto@gmail.com
"""
from setuptools import setup
with open("requirements.txt") as f:
install_requirements = f.read().splitlines()
setup(name='ndop-downloader',
author='Oto Kaláb',
author_email='kalab.oto@gmail.com',
maintainer="Oto Kaláb",
maintainer_email='kalab.oto@gmail.com',
url='https://github.com/OpenGeoLabs/qgis-ndop-downloader',
description='NDOP Downloader is an application for downloading of records of occurence from official database of the Nature Conservation Agency of the Czech Republic (Nálezová databáze Agentury ochrany přírody a krajiny ČR - NDOP - AOPK).',
version="0.1.8",
packages=["ndop"],
long_description=open('README.rst').read(),
scripts=["bin/ndop"],
license="GNU/GPL3",
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: Czech',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3'
],
install_requires=install_requirements,
keywords=['GIS', 'AOPK', 'ecology', 'species occurences',
'NDOP', 'Czech Republic', 'nálezová databáze']
)