-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (68 loc) · 2.08 KB
/
pyproject.toml
File metadata and controls
78 lines (68 loc) · 2.08 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
67
68
69
70
71
72
73
74
75
76
77
78
[build-system]
build-backend = "poetry_dynamic_versioning.backend"
requires = ["poetry-core==2.3.1", "poetry-dynamic-versioning==1.10.0"]
[project]
name = "reqstool-python-poetry-plugin"
requires-python = ">=3.13"
dynamic = ["version"]
[tool.poetry]
name = "reqstool-python-poetry-plugin"
version = "0.0.0"
description = "Reqstool Python Poetry Plugin"
authors = ["reqstool"]
license = "MIT License"
readme = "README.md"
repository = "https://github.com/reqstool/reqstool-python-poetry-plugin.git"
homepage = "https://reqstool.github.io"
documentation = "https://github.com/reqstool/reqstool-python-poetry-plugin.git"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
]
[tool.poetry.dependencies]
python = "^3.13"
poetry = "2.3.2"
reqstool-python-decorators = "0.1.0"
poetry-dynamic-versioning = "1.10.0"
[tool.poetry.group.dev.dependencies]
black = { version = "26.3.1" }
flake8 = { version = "7.3.0" }
flake8-pyproject = { version = "1.2.4" }
pytest = { version = "9.0.2" }
pytest-cov = { version = "7.0.0" }
[tool.poetry.plugins."poetry.application.plugin"]
reqstool = "reqstool_python_poetry_plugin.plugin:ReqstoolPlugin"
[tool.pytest.ini_options]
addopts = [
"-rsxX",
"-s",
"--import-mode=importlib",
"--log-cli-level=DEBUG",
]
pythonpath = [".", "src", "tests"]
testpaths = ["tests"]
norecursedirs = ["tests/fixtures"]
markers = [
"integration: tests that require external resources",
"e2e: end-to-end tests that run the full pipeline locally",
]
[tool.black]
line-length = 120
target-version = ['py313']
[tool.flake8]
ignore = ["W503"]
max-line-length = 120
max-complexity = 10
[tool.poetry-dynamic-versioning]
enable = true
style = "pep440"
dirty = false
pattern = "^(?P<base>\\d+\\.\\d+\\.\\d+.*)$"
format-jinja = "{% if distance == 0 %}{{ base }}{% else %}{{ base }}.dev{{ distance }}{% endif %}"
[tool.reqstool]
sources = ["src", "tests"]
test_results = ["build/**/junit.xml"]
dataset_directory = "docs/reqstool"
output_directory = "build/reqstool"