mirror of
https://github.com/enzet/map-machine.git
synced 2025-04-29 10:17:23 +02:00
19 lines
468 B
Python
19 lines
468 B
Python
"""
|
|
Röntgen project dynamic metadata.
|
|
"""
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name="roentgen-map",
|
|
version="0.1",
|
|
packages=["roentgen"],
|
|
url="https://github.com/enzet/Roentgen",
|
|
license="MIT",
|
|
author="Sergey Vartanov",
|
|
author_email="me@enzet.ru",
|
|
description="Python renderer for OpenStreetMap with custom icon set",
|
|
entry_points={
|
|
"console_scripts": ["roentgen=roentgen.main:main"],
|
|
},
|
|
python_requires=">=3.9",
|
|
)
|