forked from alpaka-group/bashi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (44 loc) · 1.42 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "bashi"
maintainers = [
{name = "Simeon Ehrig", email = "[email protected]"},
]
authors = [
{name = "Simeon Ehrig", email = "[email protected]"},
{name = "Jan Stephan", email = "[email protected]"},
]
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
description = "The library provides everything needed to generate a sparse combination matrix for alpaka-based projects, including a set of general-purpose combination rules."
dynamic = ["version"]
keywords = ["alpaka", "testing", "pair-wise generator"]
classifiers= [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent",
]
dependencies = [
"covertable == 2.1.0",
"typeguard",
"packaging"
]
[project.scripts]
# creates a python script named bashi-validate
# in principal, the script does the following: from bashi.validate import main; main()
bashi-validate = "bashi.validate:main"
[tool.setuptools.dynamic]
version = {file = "version.txt"}
[project.urls]
Homepage = "https://github.com/alpaka-group/bashi"
Repository = "https://github.com/alpaka-group/bashi"
Issues = "https://github.com/alpaka-group/bashi/issues"
[tool.coverage.run]
command_line = "-m unittest discover -s tests/"
branch = true
source = ["bashi"]
[tool.black]
line-length = 100