-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (47 loc) · 969 Bytes
/
pyproject.toml
File metadata and controls
55 lines (47 loc) · 969 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "dil"
version = "0.3"
description = "Detect and prune disposable project litter"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
]
requires-python = ">=3.11"
dependencies = [
'pydantic>=2.11.0',
'rich>=13.5.2',
]
[project.scripts]
dil = "dil.cli:main"
[dependency-groups]
dev = [
"pyyaml>=6.0.2",
"pre-commit>=4.2.0",
"pytest>=8.3.0",
"ruff>=0.11.0",
"tomlkit>=0.12.1",
"ty>=0.0.17",
]
[tool.ty.src]
include = ["dil", "gen", "test"]
respect-ignore-files = true
[tool.hatch.build.targets.sdist]
include = [
"/dil",
"/gen",
"/test",
"/pyproject.toml",
]
[tool.hatch.build.targets.wheel]
packages = ["dil", "gen"]
[tool.ruff]
target-version = "py311"
[tool.pytest.ini_options]
testpaths = ["test"]
python_files = ["harness.py"]
cache_dir = "/tmp/dil-pytest-cache"
addopts = "-v"