mirror of
https://github.com/enzet/map-machine.git
synced 2025-04-30 10:47:29 +02:00
50 lines
1.4 KiB
Python
50 lines
1.4 KiB
Python
"""
|
|
Röntgen project dynamic metadata.
|
|
"""
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name="roentgen-map",
|
|
version="0.1.2",
|
|
packages=["roentgen"],
|
|
url="https://github.com/enzet/Roentgen",
|
|
project_urls={
|
|
"Bug Tracker": "https://github.com/enzet/Roentgen/issues",
|
|
},
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
license="MIT",
|
|
author="Sergey Vartanov",
|
|
author_email="me@enzet.ru",
|
|
description="Python renderer for OpenStreetMap with custom icon set",
|
|
long_description="Röntgen is a Python OpenStreetMap renderer and tile "
|
|
"generator with a custom set of CC-BY 4.0 icons aimed to display as many "
|
|
"map features as possible.",
|
|
entry_points={
|
|
"console_scripts": ["roentgen=roentgen.main:main"],
|
|
},
|
|
package_data={
|
|
"roentgen": [
|
|
"icons/icons.svg",
|
|
"icons/config.json",
|
|
"icons/LICENSE",
|
|
"scheme/default.yml",
|
|
],
|
|
},
|
|
python_requires=">=3.9",
|
|
install_requires=[
|
|
"CairoSVG>=2.5.0",
|
|
"colour>=0.1.5",
|
|
"numpy>=1.18.1",
|
|
"Pillow>=8.2.0",
|
|
"portolan>=1.0.1",
|
|
"pycairo",
|
|
"pytest>=6.2.2",
|
|
"PyYAML>=4.2b1",
|
|
"svgwrite>=1.4",
|
|
"urllib3>=1.25.6",
|
|
],
|
|
)
|