summaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml14
1 files changed, 14 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
index e44adbb..4f7a722 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -28,6 +28,14 @@ dependencies = [
28] 28]
29 29
30 30
31[dependency-groups]
32dev = [
33 "pytest>=6",
34 "ruff>=0.15.0",
35 "ty>=0.0.31",
36]
37
38
31[project.scripts] 39[project.scripts]
32etoolkit = "etoolkit.__main__:main" 40etoolkit = "etoolkit.__main__:main"
33 41
@@ -42,6 +50,7 @@ Changelog = "https://codeberg.org/sgs/etoolkit/src/branch/master/CHANGELOG.md"
42[tool.pytest.ini_options] 50[tool.pytest.ini_options]
43minversion = "6.0" 51minversion = "6.0"
44addopts = "-s" 52addopts = "-s"
53cache_dir = "~/.cache/pytest_cache"
45testpaths = [ 54testpaths = [
46 "tests" 55 "tests"
47] 56]
@@ -54,6 +63,11 @@ pythonpath = [
54version = {attr = "etoolkit.__version__"} 63version = {attr = "etoolkit.__version__"}
55 64
56 65
66[tool.ty.environment]
67python-version = "3.10"
68root = ["./src"]
69
70
57[build-system] 71[build-system]
58requires = [ 72requires = [
59 "setuptools >= 77.0.3", 73 "setuptools >= 77.0.3",