prettymaps/setup.py

22 wiersze
776 B
Python
Czysty Zwykły widok Historia

2021-08-28 20:11:23 +00:00
from setuptools import setup, find_packages
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',
2021-08-28 20:11:09 +00:00
long_description=parent_dir.joinpath("README.md").read_text(),
long_description_content_type="text/markdown",
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',
2021-08-28 20:11:23 +00:00
packages=find_packages(exclude=("assets", "notebooks", "prints", "script")),
2021-08-28 20:03:21 +00:00
install_requires=parent_dir.joinpath("requirements.txt").read_text().splitlines(),
classifiers=[
'Intended Audience :: Science/Research',
],
)