forked from mocnik-science/osm-python-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (39 loc) · 1020 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
39
40
41
42
import setuptools
pkgName='OSMPythonTools'
pkgVersion='0.4.0'
pkgUrl='https://github.com/mocnik-science/osm-python-tools'
with open('./OSMPythonTools/__info__.py', 'w') as f:
f.write('pkgName = \'%s\'\n' % pkgName)
f.write('pkgVersion = \'%s\'\n' % pkgVersion)
f.write('pkgUrl = \'%s\'\n' % pkgUrl)
# see setup.cfg for metadata
setuptools.setup(
name=pkgName,
packages=setuptools.find_packages(),
install_requires=[
'beautifulsoup4',
'geojson',
'lxml',
'python-dateutil',
'ujson',
],
extras_require={
'all': [
'matplotlib',
'numpy',
'pandas',
'xarray',
],
'test': [
'pytest',
'pytest-sugar',
],
},
version=pkgVersion,
author='Franz-Benjamin Mocnik',
author_email='[email protected]',
license='GPL-3',
url=pkgUrl,
download_url='',
keywords=['OpenStreetMap', 'OSM', 'service', 'overpass', 'nominatim'],
)