-
Notifications
You must be signed in to change notification settings - Fork 46
/
pyproject.toml
56 lines (50 loc) · 1.55 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
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
name = "ceph-nvmeof"
version = "1.3.3"
description = "Service to provide Ceph storage over NVMe-oF protocol"
readme = "README.md"
requires-python = "~=3.9"
license = {file = "LICENSE"}
authors = [
{name = "Ilya Dryomov", email = "[email protected]"},
{name = "Mykola Golub", email = "[email protected]"},
{name = "Sandy Kaur", email = "[email protected]"},
{name = "Ernesto Puerta", email = "[email protected]"},
{name = "Yin Congmin", email = "[email protected]"},
{name = "Scott Peterson", email = "[email protected]"},
{name = "Jason Dillaman", email = "[email protected]"},
{name = "Anita Shekar", email = "[email protected]"},
]
maintainers = []
keywords = []
classifiers = [] # https://pypi.org/classifiers/
dependencies = [
"grpcio ~= 1.53.0",
"grpcio_tools ~= 1.53.0",
"tabulate>=0.9.0",
"pyyaml>=6.0.1",
"prometheus_client ~= 0.19.0",
"netifaces ~= 0.11.0"
]
[tool.pdm.scripts]
protoc = {call = "grpc_tools.command:build_package_protos('.')"}
pre_build = {composite = ["protoc"]}
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "INFO"
log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
[tool.pdm.dev-dependencies]
test = [
"pytest>=7.4.0",
]
[project.urls]
#homepage = ""
# documentation = ""
repository = "https://github.com/ceph/ceph-nvmeof.git"
# changelog = ""
[project.scripts]
ceph-nvmeof = "control.cli:main"