diff --git a/setup.py b/setup.py index 398d2e5..e20adc6 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,7 @@ from setuptools import setup +from pathlib import Path + +parent_dir = Path(__file__).resolve().parent setup( name='prettymaps', @@ -9,12 +12,7 @@ setup( 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.0' - ], + install_requires=parent_dir.joinpath("requirements.txt").read_text().splitlines(), classifiers=[ 'Intended Audience :: Science/Research',