Files
python-prettymaps-mirror/setup.py
2021-08-15 13:30:02 -03:00

22 lines
542 B
Python

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',
],
)