map-machine/map_machine/__init__.py
Sergey Vartanov d5ef4aba4e Merge main.
2022-09-07 02:47:46 +03:00

27 lines
715 B
Python

"""Map Machine: Python map renderer for OpenStreetMap with custom icon set."""
__project__ = "Map Machine"
__description__ = (
"Simple Python map renderer for OpenStreetMap with custom icon set "
"intended to display as many tags as possible"
)
__url__ = "https://github.com/enzet/map-machine"
__doc_url__ = f"{__url__}/blob/main/README.md"
__author__ = "Sergey Vartanov"
__email__ = "me@enzet.ru"
__version__ = "0.1.7"
REQUIREMENTS = [
"CairoSVG>=2.5.0",
"colour>=0.1.5",
"numpy>=1.18.1",
"Pillow>=8.2.0",
"portolan>=1.0.1",
"pycairo>=1.20.1",
"pytest>=6.2.2",
"PyYAML>=4.2b1",
"setuptools>=51.0.0",
"Shapely>=1.7.1",
"svgwrite>=1.4",
"urllib3>=1.25.6",
]