-
Notifications
You must be signed in to change notification settings - Fork 56
/
pyproject.toml
64 lines (57 loc) · 1.37 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", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pytest-testmon"
authors = [
{ name = "Tibor Arpas", email = "[email protected]" },
]
dynamic = ["version"]
description = "selects tests affected by changed files and methods"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["testing", "pytest", "plugin"]
license = { text = "MIT" }
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"Programming Language :: Python",
"Framework :: Pytest",
]
dependencies = [
"pytest>=5,<9",
"coverage>=6,<8",
]
# specify testmon and tmserver as packages of this project
[tool.setuptools]
packages = [
"testmon",
]
[tool.setuptools.dynamic]
version = {attr = "testmon.TESTMON_VERSION"}
[tool.black]
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
| io.intellij/
)
'''
[project.entry-points.pytest11]
pytest-testmon = "testmon.pytest_testmon"