mirror of
https://github.com/marceloprates/prettymaps.git
synced 2025-08-29 17:19:57 +02:00
Merge pull request #37 from chrieke/requirements_file
Add requirements file & setup.py improvements
This commit is contained in:
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
|
17
setup.py
17
setup.py
@@ -1,21 +1,20 @@
|
|||||||
from setuptools import setup
|
from setuptools import setup, find_packages
|
||||||
|
from pathlib import Path
|
||||||
|
|
||||||
|
parent_dir = Path(__file__).resolve().parent
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='prettymaps',
|
name='prettymaps',
|
||||||
version='1.0.0',
|
version='1.0.0',
|
||||||
description='A simple python library to draw pretty maps from OpenStreetMap data',
|
description='A simple python library to draw pretty maps from OpenStreetMap data',
|
||||||
|
long_description=parent_dir.joinpath("README.md").read_text(),
|
||||||
|
long_description_content_type="text/markdown",
|
||||||
url='https://github.com/marceloprates/prettymaps',
|
url='https://github.com/marceloprates/prettymaps',
|
||||||
author='Marcelo Prates',
|
author='Marcelo Prates',
|
||||||
author_email='marceloorp@gmail.com',
|
author_email='marceloorp@gmail.com',
|
||||||
license='MIT License',
|
license='MIT License',
|
||||||
packages=['prettymaps'],
|
packages=find_packages(exclude=("assets", "notebooks", "prints", "script")),
|
||||||
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