-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (83 loc) · 2.21 KB
/
pyproject.toml
File metadata and controls
92 lines (83 loc) · 2.21 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
84
85
86
87
88
89
90
91
92
#:schema https://json.schemastore.org/pyproject.json
#:tombi schema.strict = true
[project]
name = "procclean"
version = "2.0.0"
description = "Interactive TUI for exploring and cleaning up processes - find orphans, memory hogs, and kill them"
readme = "README.md"
requires-python = ">=3.14"
license = "MIT"
license-files = ["LICENSE"]
authors = [{ name = "Kaj Kowalski", email = "info@kajkowalski.nl" }]
keywords = ["cleanup", "kill", "memory", "orphan", "process", "terminal", "tui"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.14",
"Topic :: System :: Monitoring",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
]
dependencies = [
"psutil>=7.2.1",
"tabulate>=0.9.0",
"textual>=7.0.0",
]
[project.urls]
Homepage = "https://procclean.kjanat.com"
Issues = "https://github.com/kjanat/procclean/issues"
Repository = "https://github.com/kjanat/procclean"
[project.scripts]
procclean = "procclean:main"
[dependency-groups]
dev = [
"pre-commit>=4.5.1",
]
lint = [
"dprint-py>=0.51.1.0",
"pylint>=4.0.4",
"ruff>=0.14.10",
"tombi>=0.7.14",
"ty>=0.0.8",
]
mypy = [
"mypy>=1.19.1",
"types-psutil>=7.2.1.20251231",
"types-tabulate>=0.9.0.20241207",
]
site = [
"markdown-it-py[plugins]>=4.0.0",
"mkdocs>=1.6.1",
"mkdocs-material[imaging]>=9.7.1",
"mkdocs-rich-argparse",
]
test = [
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"pytest-cov>=7.0.0",
"pytest-xdist[psutil]>=3.8.0",
]
tui = [
"textual-dev>=1.8.0",
]
[build-system]
requires = ["uv_build>=0.9.21,<0.10.0"]
build-backend = "uv_build"
[tool.pytest]
addopts = ["-n", "logical"]
asyncio_mode = "strict"
[tool.uv]
environments = ["sys_platform == 'linux'"]
default-groups = "all"
[tool.uv.sources]
mkdocs-rich-argparse = { git = "https://github.com/kjanat/mkdocs_rich_argparse.git", branch = "prog-style" }
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true