prettymaps/setup.py

21 wiersze
592 B
Python
Czysty Zwykły widok Historia

from setuptools import setup
2021-08-28 20:03:21 +00:00
from pathlib import Path
parent_dir = Path(__file__).resolve().parent
setup(
name='prettymaps',
version='1.0.0',
description='A simple python library to draw pretty maps from OpenStreetMap data',
url='https://github.com/marceloprates/prettymaps',
author='Marcelo Prates',
2021-08-24 01:13:57 +00:00
author_email='marceloorp@gmail.com',
license='MIT License',
packages=['prettymaps'],
2021-08-28 20:03:21 +00:00
install_requires=parent_dir.joinpath("requirements.txt").read_text().splitlines(),
classifiers=[
'Intended Audience :: Science/Research',
],
)