-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
69 lines (62 loc) · 2.22 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
66
67
68
69
#This file is part of mpunittest, a parallel unittest runner.
#Copyright (C) 2023 Maximilian Pilz
#
#This program is free software; you can redistribute it and/or
#modify it under the terms of the GNU General Public License
#as published by the Free Software Foundation; version 2.
#
#This program is distributed in the hope that it will be useful,
#but WITHOUT ANY WARRANTY; without even the implied warranty of
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
#GNU General Public License for more details.
#
#You should have received a copy of the GNU General Public License
#along with this program; if not, write to the Free Software
#Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mpunittest"
description = "Multi core processing of unittests"
readme = "README.rst"
requires-python = ">=3.8"
license = {text = "GPL-2.0-only"}
keywords = ["unittest", "unittests", "parallel", "multiprocessing", "process", "processes", "runner"]
authors = [
{email = "[email protected]"},
{name = "Maximilian Pilz"}
]
maintainers = [
{name = "Maximilian Pilz", email = "[email protected]"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"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 :: Implementation :: CPython",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Testing :: Unit",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
]
dynamic = ["version"]
[tool.hatch.build.targets.sdist]
include = [
"src/mpunittest/**/*.py",
"src/mpunittest/**/*.html",
"COPYING",
"README.rst",
"pyproject.toml"
]
support-legacy = false
[tool.hatch.build.targets.wheel]
packages = ["src/mpunittest"]
[tool.hatch.version]
path = "src/mpunittest/__init__.py"
[project.urls]
repository = "https://github.com/maximilianpilz/mpunittest.git"