Fix documentation.

This commit is contained in:
Sergey Vartanov 2021-05-31 02:22:40 +03:00
parent 133e6b36c2
commit 3bef455d8e
2 changed files with 8 additions and 4 deletions

View file

@ -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"

View file

@ -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")