map-machine/map_machine/__init__.py
Sergey Vartanov ef53fa9229 Fix requirements.
Bug is reported by @Zero3.
2021-09-24 06:24:58 +03:00

29 lines
727 B
Python

"""
Map Machine project: simple Python map renderer for OpenStreetMap and 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.3"
REQUIREMENTS: list[str] = [
"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",
"setuptools>=51.0.0",
"Shapely>=1.7.1",
"svgwrite>=1.4",
"urllib3>=1.25.6",
]