mirror of
https://github.com/marceloprates/prettymaps.git
synced 2025-01-17 13:08:14 +01:00
22 lines
769 B
Python
22 lines
769 B
Python
from setuptools import setup, find_packages
|
|
from pathlib import Path
|
|
|
|
parent_dir = Path(__file__).resolve().parent
|
|
|
|
setup(
|
|
name="prettymaps",
|
|
version="v0.1.3",
|
|
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",
|
|
author="Marcelo Prates",
|
|
author_email="marceloorp@gmail.com",
|
|
license="MIT License",
|
|
packages=find_packages(exclude=("assets", "notebooks", "prints", "script")),
|
|
install_requires=parent_dir.joinpath("requirements.txt").read_text().splitlines(),
|
|
classifiers=[
|
|
"Intended Audience :: Science/Research",
|
|
],
|
|
)
|