-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 1.02 KB
/
Copy pathpyproject.toml
File metadata and controls
36 lines (32 loc) · 1.02 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
[build-system]
requires = [
"setuptools>=42",
"wheel>=0.39.0",
"setuptools_scm>=8.0.0",
"virtualenv>=20.0.0"
]
build-backend = "setuptools.build_meta"
[project]
name = "pylium"
dynamic = ["version"]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"pydantic>=2.11.4",
"pydantic-settings>=2.0.0",
"fire @ git+https://github.com/Verlusti/python-fire.git"
]
[tool.setuptools]
package-dir = {"" = "src"}
packages = ["pylium", "pylium.core"]
[tool.setuptools_scm]
write_to = "src/pylium/_version.py"
version_scheme = "post-release"
local_scheme = "node-and-date"
[tool.pytest.ini_options]
norecursedirs = ".venv .git build dist external *.egg-info src .old"
# Add any other top-level dirs you want to skip.
# 'src' is often skipped in norecursedirs if 'testpaths' is set to 'tests',
# or if tests are only in the 'tests' directory.
# If your tests directory itself is named 'src', then you wouldn't put 'src' here.
testpaths = "tests" # This tells pytest to primarily look in the 'tests' directory