skyeweave/atlasimagecomposer/config/config.py
Firq fbda98805f
All checks were successful
/ lint-and-typing (push) Successful in 4m41s
/ build-artifacts (push) Successful in 15s
/ publish-artifacts (push) Successful in 1m2s
/ release (push) Successful in 59s
/ mypy (push) Successful in 17s
/ pylint (push) Successful in 12s
Release Candidate 1 for the people
2024-10-05 14:01:50 +02:00

17 lines
298 B
Python

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