-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
64 lines (60 loc) · 1.94 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",
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
exclude = ["pytest_mpi_check"]
namespaces = false
[project]
name = "pytest_parallel"
description = "Plugin to manage test in distributed way with MPI Standard"
readme = "README.md"
authors = [
{name = "Bruno Maugars", email = "[email protected]"},
{name = "Berenger Berthoul", email = "[email protected]"},
]
maintainers = [
{name = "Bruno Maugars", email = "[email protected]"},
]
license = {text = "Mozilla Public License 2.0"}
keywords = [
"pytest",
"report",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: Unix",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.8"
dependencies = [
"pytest>=6.2.5",
"mpi4py",
"numpy",
]
version = "1.2.0"
[project.urls]
Homepage = "https://github.com/onera/pytest_parallel"
Source = "https://github.com/onera/pytest_parallel"
Documentation = "https://github.com/onera/pytest_parallel"
"Release notes" = "https://github.com/onera/pytest_parallel/releases"
[project.entry-points.pytest11]
parallel = "pytest_parallel.plugin"