forked from zyskarch/pytestarch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (48 loc) · 1.49 KB
/
pyproject.toml
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
[tool.poetry]
name = "PyTestArch"
version = "1.5.1"
description = "Test framework for software architecture based on imports between modules"
authors = ["zyskarch <zyskarch@gmail.com>"]
maintainers = ["zyskarch <zyskarch@gmail.com>"]
readme = "README.md"
license = "Apache-2.0"
documentation = "https://zyskarch.github.io/pytestarch/"
repository = "https://github.com/zyskarch/pytestarch"
keywords = ["architecture", "test"]
classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Testing :: Unit",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/zyskarch/pytestarch/issues"
[tool.poetry.dependencies]
python = "^3.8"
networkx = "^3.0"
matplotlib = "^3.5.3"
[tool.poetry.dev-dependencies]
mkdocs = "1.4.2"
mkdocstrings-python = "0.9.0"
mkdocs-material = "9.1.6"
nox = "2022.8.7"
pre-commit = "2.20.0"
pytest = "^7.1.2"
coverage = "^7.0.5"
mike = "1.1.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
sourcepath = "src"
[tool.isort]
profile = "black"
add_imports = ["from __future__ import annotations"]
[tool.bandit]
[tool.bandit.assert_used]
skips = ["*/test_*.py"]