forked from beakerlib/beakerlib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 758 Bytes
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 758 Bytes
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "beakerlib"
description = "BeakerLib is a shell-level integration testing library"
readme = "README.md"
authors = [
{ name = "Cristian Le", email = "cristian.le@mpsd.mpg.de" },
{ name = "Dalibor Pospíšil", email = "dapospis@redhat.com"},
]
maintainers = [
{ name = "Cristian Le", email = "cristian.le@mpsd.mpg.de" },
]
license = { file = "LICENSE" }
dynamic = ["version"]
[project.optional-dependencies]
test = [
]
docs = [
"sphinx >= 6.0",
"furo",
"sphinx-design",
"sphinx-togglebutton",
"myst-parser",
"breathe",
]
dev = [
"beakerlib[test]",
"pre-commit",
]
[tool.setuptools]
packages = []