Skip to content

Commit

Permalink
adjust setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
chrieke committed Aug 28, 2021
1 parent 1da63ae commit 572c1b5
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 1,7 @@
from setuptools import setup
from pathlib import Path

parent_dir = Path(__file__).resolve().parent

setup(
name='prettymaps',
Expand All @@ -9,12 12,7 @@
author_email='[email protected]',
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',
Expand Down

0 comments on commit 572c1b5

Please sign in to comment.