-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (69 loc) · 2.07 KB
/
pyproject.toml
File metadata and controls
79 lines (69 loc) · 2.07 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
79
[project]
name = "PyTestArch"
version = "4.0.1"
requires-python = ">=3.10"
description = "Test framework for software architecture based on imports between modules"
authors = [{ name = "zyskarch", email = "zyskarch@gmail.com" }]
maintainers = [{ name = "zyskarch", email = "zyskarch@gmail.com" }]
readme = "README.md"
license = "Apache-2.0"
keywords = ["architecture", "test"]
classifiers = [
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Testing :: Unit",
]
dependencies = ["networkx>=3.2"]
[project.optional-dependencies]
visualization = ["matplotlib>=3.10"]
[project.urls]
issues = "https://github.com/zyskarch/pytestarch/issues"
documentation = "https://zyskarch.github.io/pytestarch/latest"
repository = "https://github.com/zyskarch/pytestarch"
[tool.poetry.group.dev.dependencies]
mkdocs = "1.6.0"
mkdocstrings-python = "1.10.3"
mkdocs-material = "9.5.25"
mkdocs-autorefs = "1.0.1"
mkdocs-material-extensions = "1.3.1"
mkdocstrings = "0.25.1"
griffe = "0.45.2"
nox = "2025.11.12"
pre-commit = "4.5.0"
pytest = "^8.2.1"
coverage = "^7.5.2"
mike = "2.1.1"
ruff = "^0.14.0"
[build-system]
requires = ["poetry-core>=2.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = [
"F", # Pyflakes
"E",
"W", # Pylint Error, Warning
"UP", # pyupgrade
"FURB", # refurb
"S", # flake8-bandit
"I", # isort
"RUF100", # Unneeded noqa
]
ignore = [
"E501", # line too long -> handled by formatter
]
[tool.ruff.lint.per-file-ignores]
"tests/*.py" = [
"S101", # assert statement
"E743", # ambiguous function name
]
[tool.ruff.lint.isort]
known-first-party = ["integration", "resources", "query_language"]