-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (40 loc) · 976 Bytes
/
pyproject.toml
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
[project]
name = "killpy"
version = "0.14.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.12"
]
dependencies = [
"rich>=13.9.4",
"textual>=1.0.0",
]
requires-python = ">=3.12"
[tool.setuptools]
license-files = []
[dependency-groups]
dev = [
"commitizen>=4.1.0",
"coverage>=7.6.10",
"mypy>=1.14.0",
"pre-commit>=4.0.1",
"pytest>=8.3.4",
"pytest-cov>=6.0.0",
"ruff>=0.8.4",
]
[tool.uv.workspace]
members = ["q"]
[tool.uv]
package = true
[tool.commitizen]
name = "cz_conventional_commits"
version = "0.14.0"
version_files = [
"src/__version__.py",
"pyproject.toml:version"
]
[project.scripts]
killpy = "killpy.__main__:main"