mirror of
https://github.com/enzet/map-machine.git
synced 2025-04-29 18:27:19 +02:00
Issue #18: add setup.py.
This commit is contained in:
parent
9555a5d74f
commit
39c6331a11
1 changed files with 19 additions and 0 deletions
19
setup.py
Normal file
19
setup.py
Normal file
|
@ -0,0 +1,19 @@
|
|||
"""
|
||||
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",
|
||||
)
|
Loading…
Add table
Reference in a new issue