mirror of
https://github.com/enzet/map-machine.git
synced 2025-05-31 18:06:23 +02:00
Fix documentation.
This commit is contained in:
parent
133e6b36c2
commit
3bef455d8e
2 changed files with 8 additions and 4 deletions
|
@ -3,7 +3,5 @@ Röntgen project: simple Python map renderer for OpenStreetMap and icon set.
|
|||
"""
|
||||
|
||||
__url__ = "https://github.com/enzet/Roentgen"
|
||||
__maintainer__ = "Sergey Vartanov"
|
||||
__maintainer_email__ = "me@enzet.ru"
|
||||
__author__ = __maintainer__
|
||||
__author_email__ = __maintainer_email__
|
||||
__author__ = "Sergey Vartanov"
|
||||
__email__ = "me@enzet.ru"
|
||||
|
|
|
@ -1,8 +1,14 @@
|
|||
"""
|
||||
Tests for Röntgen project.
|
||||
"""
|
||||
from pathlib import Path
|
||||
|
||||
from roentgen.icon import ShapeExtractor
|
||||
from roentgen.scheme import Scheme
|
||||
|
||||
__author__ = "Sergey Vartanov"
|
||||
__email__ = "me@enzet.ru"
|
||||
|
||||
SCHEME: Scheme = Scheme(Path("scheme/default.yml"))
|
||||
SCHEME_EXTRACTOR: ShapeExtractor = ShapeExtractor(
|
||||
Path("icons/icons.svg"), Path("icons/config.json")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue