-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (52 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
58 lines (52 loc) · 1.19 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
[project]
name = "confkit"
version = "1.3.0"
description = "Lightweight and Easy to use configuration manager for Python projects"
readme = "README.md"
authors = [
{ name = "HEROgold" }
]
requires-python = ">=3.11"
dependencies = []
[project.optional-dependencies]
pydantic = [
"pydantic>=2.12.5",
]
msgspec = [
"msgspec>=0.20.0",
"pyyaml>=6.0.3", # required by msgspec
"tomli-w>=1.2.0", # required by msgspec
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"coverage>=7.13.4",
"pytest-cov>=7.0.0",
"hypothesis>=6.151.6",
"pydantic>=2.12.5",
"pytest>=9.0.2",
"ruff>=0.15.1",
"coveralls>=4.0.2",
"msgspec>=0.20.0",
"pyyaml>=6.0.3",
"tomli-w>=1.2.0",
"pytest-order>=1.3.0",
]
docs = [
"mkdocs>=1.6.1",
"mkdocs-material>=9.7.1",
"mkdocstrings[python]>=1.0.3",
"mkdocs-pdoc-plugin @ git+https://github.com/spirali/mkdocs-pdoc-plugin",
"pdoc>=16.0.0",
]
[[tool.pyright.executionEnvironments]]
root = "."
include = ["**/test_*.py", "**/tests/**/*.py"]
reportPrivateUsage = "none"
[tool.ty.src]
include = ["src"]
exclude = ["tests"]
[tool.ty.rules]
invalid-assignment = "ignore"