-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
37 lines (31 loc) · 1.05 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ocptv-autoval-ssd"
version = "0.0.1"
description = "Autoval SSD tests"
readme = "README.md"
authors = [
{ name = "OCP Test & Validation", email = "[email protected]" },
]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Topic :: System :: Hardware",
]
keywords = ["ocp", "ocptv", "autoval", "hardware", "testing", "storage", "ssd", "nvme"]
dependencies = [
"ocptv-autoval==0.0.1"
]
requires-python = ">=3.8"
[project.optional-dependencies]
publish = ["build", "twine"]
[project.urls]
"Homepage" = "https://github.com/opencomputeproject/ocp-diag-autoval-ssd"
"Bug reports" = "https://github.com/opencomputeproject/ocp-diag-autoval-ssd/issues"
"Source" = "https://github.com/opencomputeproject/ocp-diag-autoval-ssd"
[tool.setuptools.package-data]
"*" = ["*.json", "*.fio", "*.job", "*.go", "*.c"]