-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (35 loc) · 842 Bytes
/
Copy pathpyproject.toml
File metadata and controls
44 lines (35 loc) · 842 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
41
42
43
44
[build-system]
requires = ["setuptools>=75", "setuptools-scm>=9.2"]
build-backend = "setuptools.build_meta"
[project]
name = "evdb"
dynamic = ["version"]
description = "Host-local database management for self-hosters"
readme = "README.md"
license = "MIT"
requires-python = ">=3.14"
dependencies = [
"PyYAML>=6.0",
]
[dependency-groups]
dev = [
"pyinstaller>=6.14",
"pytest>=8.3",
"ruff>=0.12",
]
[project.scripts]
evdb = "evdb.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
evdb = ["units/*.service", "units/*.timer"]
[tool.setuptools_scm]
version_file = "src/evdb/_version.py"
[tool.pytest.ini_options]
addopts = "-ra --import-mode=importlib"
testpaths = ["tests"]
[tool.ruff]
target-version = "py314"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]