-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
64 lines (54 loc) · 1.46 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
57
58
59
60
61
62
63
64
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "pytest-archon"
description = "Rule your architecture like a real developer"
authors = [
{ name = "Arjan Molenaar", email = "[email protected]" },
{ name = "Joachim Bargsten", email = "[email protected]" }
]
readme = "README.md"
requires-python = ">=3.8"
license = { text = "Apache Software License" }
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: Apache Software License",
"Framework :: Pytest",
"Development Status :: 5 - Production/Stable",
]
dependencies = [
"pytest>=7.2",
]
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/jwbargsten/pytest-archon"
repository = "https://github.com/jwbargsten/pytest-archon"
[project.optional-dependencies]
dev = [
"coverage",
"flake8",
"black",
"mypy",
"check-manifest",
"check-wheel-contents",
"pyroma"
]
[tool.setuptools_scm]
[tool.setuptools.package-data]
"pytest_archon.assets" = ["*.txt"]
[tool.black]
line-length = 110
[tool.isort]
profile = "black"
line_length = 110
[tool.pytest.ini_options]
pythonpath = [ "src", "tests" ]
[project.entry-points.pytest11]
arch = "pytest_archon.plugin"
[tool.coverage.paths]
source = ["src"]