-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (56 loc) · 1.52 KB
/
pyproject.toml
File metadata and controls
66 lines (56 loc) · 1.52 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
59
60
61
62
63
64
65
66
[build-system]
requires = ["hatchling==1.29.0", "hatch-vcs==0.5.0", "build==1.4.0", "twine==6.2.0"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
addopts = [
"-rsxX",
"-s",
"--import-mode=importlib",
"--log-cli-level=DEBUG",
]
pythonpath = [".", "src", "tests"]
testpaths = ["tests"]
markers = [
"integration: tests that require external resources",
"e2e: end-to-end tests that run the full pipeline locally",
]
[project]
name = "reqstool-python-decorators"
dynamic = ["version"]
authors = [{ name = "reqstool" }]
description = "Reqstool Python Decorators"
readme = "README.md"
requires-python = ">=3.13"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
]
dependencies = ["ruamel.yaml==0.19.1"]
[project.urls]
Homepage = "https://reqstool.github.io"
Source = "https://github.com/reqstool/reqstool-python-decorators.git"
Documentation = "https://github.com/reqstool/reqstool-python-decorators.git"
[project.scripts]
# section needed for poetry convertion
[tool.hatch.version]
source = "vcs"
[tool.hatch.version.raw-options]
local_scheme = "no-local-version"
[tool.hatch.envs.dev]
dependencies = [
"pytest==8.4.1",
"pytest-sugar==1.0.0",
"pytest-cov==6.2.1",
"black==25.1.0",
"flake8==7.3.0",
"flake8-pyproject==1.2.3",
]
[tool.black]
line-length = 120
target-version = ['py313']
[tool.flake8]
ignore = ["W503"]
max-line-length = 120
max-complexity = 10