mirror of
https://github.com/marceloprates/prettymaps.git
synced 2025-01-17 21:18:19 +01:00
23 lines
568 B
Python
23 lines
568 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',
|
|
'vsketch==1.0.0a0'
|
|
],
|
|
|
|
classifiers=[
|
|
'Intended Audience :: Science/Research',
|
|
],
|
|
)
|