-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (33 loc) · 914 Bytes
/
pyproject.toml
File metadata and controls
40 lines (33 loc) · 914 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
[project]
name = "nginx-config-reloader"
version = "20260420.165948"
description = "nginx config file monitor and reloader"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"dasbus==1.7",
"pygobject<3.51",
"watchdog",
]
[tool.uv.sources]
watchdog = { git = "https://github.com/gorakhargosh/watchdog.git", rev = "f3e78cd4d9500d287bd11ec5d08a1f351601028d" }
[project.scripts]
nginx_config_reloader = "nginx_config_reloader:main"
[tool.setuptools.packages.find]
include = ["nginx_config_reloader*"]
[build-system]
requires = ["setuptools>=66", "wheel"]
build-backend = "setuptools.build_meta"
[dependency-groups]
dev = [
"black>=26.3.1",
"pre-commit>=3.2.0",
"pygobject-stubs>=2.16.0",
"pytest>=9.0.2",
"pytest-xdist>=3.8.0",
"pyupgrade>=3.21.2",
]
[tool.pyright]
typeCheckingMode = "basic"
[tool.isort]
profile = "black" # Make isort compatible with black