skyeweave/atlasimagecomposer/config/config.py

17 lines
298 B
Python
Raw Normal View History

2024-10-04 18:18:56 +00:00
# pylint: disable=too-few-public-methods
import pathlib
2024-10-05 12:01:50 +00:00
2024-10-04 18:18:56 +00:00
class Paths:
_root = pathlib.Path(__file__).parents[1]
IMAGES = _root / ".temp"
OUTPUT = _root / ".out"
class ExpressionDefaults:
2024-10-05 12:01:50 +00:00
FACESIZE = 256
SHEETSIZE = 1024
2024-10-04 18:18:56 +00:00
class AtlasDefaults:
REGION = "JP"
2024-10-05 12:01:50 +00:00
TIMEOUT = 10