mirror of
https://github.com/marceloprates/prettymaps.git
synced 2025-08-16 19:44:10 +02:00
4
requirements.txt
Normal file
4
requirements.txt
Normal file
@@ -0,0 +1,4 @@
|
||||
osmnx==1.0.1
|
||||
tabulate==0.8.9
|
||||
jupyter==1.0.0
|
||||
#vsketch==1.0.0
|
10
setup.py
10
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',
|
||||
|
Reference in New Issue
Block a user