map-machine/test/__init__.py
2021-05-31 02:22:40 +03:00

17 lines
359 B
Python

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