forked from aicenter/roadmap-processing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (17 loc) · 699 Bytes
/
Copy pathsetup.py
File metadata and controls
18 lines (17 loc) · 699 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import setuptools
from setuptools import setup
setup(
name='roadmaptools',
version='1.0.2',
description='OSM and geoJSON tools',
author='Martin Korytak',
author_email='cbudrud@gmail.com',
license='MIT',
packages=setuptools.find_packages(),
url = 'https://github.com/aicenter/roadmap-processing',
download_url = 'https://github.com/aicenter/roadmap-processing/archive/0.2.5.tar.gz',
install_requires=['osmread','setuptools','networkx>=2.0','geojson', 'gpx_lite', 'rtree', 'tqdm',
'typing', 'numpy', 'fconfig', 'googlemaps', 'overpass', 'pandas', 'scipy', 'shapely'],
python_requires='>=3',
package_data={'roadmaptools.resources': ['*.cfg']}
)