-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
46 lines (40 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
[project]
name = "fiddledyn"
version = "0.0.1"
description = "A dynamic config loader and serializer based on Fiddle."
readme = "README.md"
authors = [{ name = "acecchini", email = "ale.cecchini.valette@gmail.com" }]
requires-python = ">=3.10,<3.13"
dependencies = ["fiddle>=0.3.0,<0.4.0"]
[project.optional-dependencies]
nemo = ["nemo-run>=0.8.1,<0.9.0"]
[dependency-groups]
optional = ["nemo-run>=0.8.1,<0.9.0"]
docs = ["zensical>=0.0.31", "mkdocs-material>=9.7.6"]
test = [
"pytest>=9.0.2",
"pytest-cov>=7.1.0",
"pytest-xdist>=3.8.0",
"tox>=4.52.0",
"tox-uv>=1.34.0",
]
notebook = ["ipykernel>=7.2.0"]
dev = ["ruff>=0.15.9", "prek>=0.3.8", "pyright>=1.1.408"]
[tool.uv]
environments = ["sys_platform == 'linux'", "sys_platform == 'darwin'"]
default-groups = ["optional", "docs", "test", "notebook", "dev"]
required-version = ">=0.11.3,<0.12.0"
python-preference = "only-managed"
[build-system]
requires = ["uv_build>=0.11.3,<0.12.0"]
build-backend = "uv_build"
[tool.pyright]
typeCheckingMode = "standard"
include = ["src", "tests"]
stubPath = "src/typings"
reportMissingModuleSource = "none"
reportUnusedImport = "warning"
pythonVersion = "3.10"
pythonPlatform = "Linux"
venvPath = "."
venv = ".venv"