Merge pull request #3 from chrieke/requirements_file

Requirements file
pull/32/head
Christoph Rieke 2021-08-28 22:04:58 +02:00 zatwierdzone przez GitHub
commit b253b9da26
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
2 zmienionych plików z 8 dodań i 6 usunięć

4
requirements.txt 100644
Wyświetl plik

@ -0,0 +1,4 @@
osmnx==1.0.1
tabulate==0.8.9
jupyter==1.0.0
#vsketch==1.0.0

Wyświetl plik

@ -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',