-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
38 lines (33 loc) · 868 Bytes
/
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
from setuptools import setup, find_packages
from wfs_downloader import (
__title__ as title,
__version__ as version,
__author__ as author,
__license__ as license
)
description = 'Downloads GML files from a WFS service in a pseudo-paginated way using bounding boxes and combine them again to one file.'
email = '[email protected]'
url = 'https://github.com/codeforberlin/wfs-downloader'
requirements = [
'PyYAML'
]
console_scripts = [
'wfs-downloader=wfs_downloader.download:main'
]
setup(
name=title,
version=version,
description=description,
url=url,
author=author,
author_email=email,
maintainer=author,
maintainer_email=email,
license=license,
packages=find_packages(),
install_requires=requirements,
classifiers=[],
entry_points={
'console_scripts': console_scripts
}
)