-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (71 loc) · 1.96 KB
/
pyproject.toml
File metadata and controls
83 lines (71 loc) · 1.96 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[project]
name = "killpy"
version = "0.24.0"
description = "List all .venv directories and Conda environments 🐍 on your system and check how much space they are using. You can then choose which ones to delete in order to free up space 🧹."
readme = "README.md"
classifiers = [
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"click>=8.1.8",
"packaging>=24.0",
"rich>=13.9.4",
"textual>=1.0.0",
]
requires-python = ">=3.10"
[project.urls]
Homepage = "https://github.com/Tlaloc-Es/killpy"
Documentation = "https://tlaloc-es.github.io/killpy/"
Repository = "https://github.com/Tlaloc-Es/killpy"
"Bug Tracker" = "https://github.com/Tlaloc-Es/killpy/issues"
[tool.setuptools]
license-files = []
[tool.setuptools.packages.find]
include = ["killpy*"]
[dependency-groups]
dev = [
"commitizen>=4.1.0",
"coverage>=7.6.10",
"mkdocs-material>=9.6.0",
"mypy>=1.14.0",
"poethepoet>=0.33.0",
"pre-commit>=4.0.1",
"pytest>=8.3.4",
"pytest-cov>=6.0.0",
"ruff>=0.8.4",
]
[tool.uv]
package = true
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --tb=short --cov=killpy --cov-report=term-missing --cov-report=xml"
[tool.coverage.run]
branch = true
source = ["killpy"]
omit = ["killpy/cli.py", "killpy/__main__.py"]
[tool.coverage.report]
show_missing = true
skip_covered = false
exclude_lines = [
"pragma: no cover",
"if TYPE_CHECKING:",
"@abstractmethod",
"raise NotImplementedError",
]
[tool.commitizen]
name = "cz_conventional_commits"
version_provider = "uv"
version_files = ["README.md:rev:"]
[tool.poe.tasks]
test = "pytest"
cov = "coverage html"
lint = "ruff check killpy tests"
format = "ruff format killpy tests"
type = "mypy killpy"
[project.scripts]
killpy = "killpy.__main__:cli"