-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
65 lines (58 loc) · 1.56 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
65
[build-system]
requires = [
"setuptools>=45",
"setuptools_scm[toml]>=6.2",
]
build-backend = "setuptools.build_meta"
[project]
name = "pytest-executable"
description = "pytest plugin for testing executables"
readme = "README.rst"
authors = [
{name = "Antoine Dechaume"},
]
classifiers = [
"Environment :: Console",
"Framework :: Pytest",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Testing",
"Topic :: Utilities",
]
dynamic = ["version"]
requires-python = ">=3.8,<3.13"
dependencies = [
"delta >=0.4,<0.5",
"jinja2 >=2.7,<3.2",
"jsonschema >=2,<5",
"pytest >=5,<8",
"pyyaml >=3,<6.1",
]
license = {text = "Apache Software License 2.0"}
[project.urls]
Homepage = "https://www.github.com/CS-SI/pytest-executable"
[project.optional-dependencies]
test = [
"covdefaults",
"pytest-cov",
]
[project.entry-points.pytest11]
pytest_executable = "pytest_executable.plugin"
[tool.setuptools_scm]
[tool.setuptools]
license-files = [
"LICENSE.txt",
"CREDITS.md",
]
[tool.black]
target-version = ['py38']