forked from mocnik-science/osm-python-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (34 loc) · 1022 Bytes
/
setup.py
File metadata and controls
37 lines (34 loc) · 1022 Bytes
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
from setuptools import setup
name = 'OSMPythonTools'
version = '0.2.6'
url = 'https://github.com/mocnik-science/osm-python-tools'
with open('./OSMPythonTools/__info__.py', 'w') as f:
f.write('__name__ = \'%s\'\n' % name)
f.write('__version__ = \'%s\'\n' % version)
f.write('__url__ = \'%s\'\n' % url)
setup(
name = name,
packages = ['OSMPythonTools', 'OSMPythonTools.internal'],
install_requires = [
'beautifulsoup4',
'geojson',
'lxml',
'matplotlib',
'numpy',
'pandas',
'ujson',
'xarray',
],
version = version,
author = 'Franz-Benjamin Mocnik',
author_email = 'mail@mocnik-science.net',
description = 'A library to access OpenStreetMap related services',
license = 'GPL-3',
url = url,
download_url = '',
keywords = ['OpenStreetMap', 'OSM', 'service', 'overpass', 'nominatim'],
classifiers = [
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3',
],
)