Updated draw.py and fetch.py for flexibility

This commit is contained in:
Marcelo Prates
2021-08-15 13:30:02 -03:00
parent e696e53a74
commit dedab1066b
7 changed files with 545 additions and 291 deletions

21
setup.py Normal file
View File

@@ -0,0 +1,21 @@
from setuptools import setup
setup(
name='prettymaps',
version='1.0.0',
description='A simple python library to draw pretty maps from OpenStreetMap data',
url='https://github.com/marceloprates/prettymaps',
author='Marcelo Prates',
author_email='marceloorp@gmail.com',
license='MIT License',
packages=['prettymaps'],
install_requires=[
'osmnx=1.0.1',
'tabulate=0.8.9',
'jupyter=1.0.0',
],
classifiers=[
'Intended Audience :: Science/Research',
],
)