#!/user/bin/env python
# -*- coding: utf-8 -*-
from py_mono_tools.goals.deployers import PoetryDeployer
from py_mono_tools.goals.linters import DEFAULT_PYTHON
from py_mono_tools.goals.testers import PytestTester


NAME = "py_mono_tools"
BACKEND = "system"
REQUIREMENTS_RELATIVE_PATH = "../../pyproject.toml"

LINT = [
    *DEFAULT_PYTHON,
]
TEST = [PytestTester(test_dir="../../test/py_mono_tools")]
DEPLOY = [PoetryDeployer(pyproject_loc=REQUIREMENTS_RELATIVE_PATH)]
