-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 1006 Bytes
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 1006 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
[project]
name = "python-dmon"
version = "0.3.0"
description = "A lightweight, cross-platform daemon manager that runs any command as a background process."
readme = "README.md"
authors = [
{ name = "Atomie CHEN", email = "atomic_cwh@163.com" }
]
requires-python = ">=3.8"
dependencies = [
"colorama>=0.4.6",
"psutil>=7.1.0",
"pyyaml>=6.0.3",
"termcolor>=2.4.0",
"tomli>=2.2.1 ; python_full_version < '3.11'",
]
keywords = ["python-dmon", "dmon", "daemon", "background", "detach", "process management"]
[project.urls]
"Homepage" = "https://github.com/atomiechen/python-dmon"
"Bug Tracker" = "https://github.com/atomiechen/python-dmon/issues"
Changelog = "https://github.com/atomiechen/python-dmon/blob/main/CHANGELOG.md"
[project.scripts]
dmon = "dmon.__main__:main"
python-dmon = "dmon.__main__:main"
[build-system]
requires = ["uv_build>=0.8.4,<0.9.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "dmon"
[dependency-groups]
dev = [
"ruff>=0.13.3",
]