mirror of
https://github.com/marceloprates/prettymaps.git
synced 2025-09-09 21:51:00 +02:00
adjust setup.py
This commit is contained in:
10
setup.py
10
setup.py
@@ -1,4 +1,7 @@
|
|||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
from pathlib import Path
|
||||||
|
|
||||||
|
parent_dir = Path(__file__).resolve().parent
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='prettymaps',
|
name='prettymaps',
|
||||||
@@ -9,12 +12,7 @@ setup(
|
|||||||
author_email='marceloorp@gmail.com',
|
author_email='marceloorp@gmail.com',
|
||||||
license='MIT License',
|
license='MIT License',
|
||||||
packages=['prettymaps'],
|
packages=['prettymaps'],
|
||||||
install_requires=[
|
install_requires=parent_dir.joinpath("requirements.txt").read_text().splitlines(),
|
||||||
'osmnx==1.0.1',
|
|
||||||
'tabulate==0.8.9',
|
|
||||||
'jupyter==1.0.0',
|
|
||||||
#'vsketch==1.0.0'
|
|
||||||
],
|
|
||||||
|
|
||||||
classifiers=[
|
classifiers=[
|
||||||
'Intended Audience :: Science/Research',
|
'Intended Audience :: Science/Research',
|
||||||
|
Reference in New Issue
Block a user