forked from ceph/teuthology
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
144 lines (134 loc) · 3.75 KB
/
Copy pathpyproject.toml
File metadata and controls
144 lines (134 loc) · 3.75 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
[project]
name = "teuthology"
authors = [
{name = "Tommi Virtanen"},
{name = "Zack Cerza", email = "zack@redhat.com"},
{name = "Josh Durgin", email = "jdurgin@redhat.com"},
{name = "Sage Weil", email = "sage@newdream.net"},
{name = "Loic Dachary", email = "loic@dachary.org"},
]
dynamic = ["version"]
description = "Ceph test framework"
readme = "README.rst"
license = "MIT"
requires-python = ">=3.12"
dependencies = [
"ansible-core==2.17.7",
"apache-libcloud",
"backports.ssl-match-hostname",
"beanstalkc3>=0.4.0",
"configobj",
"configparser",
"docopt",
# Set a minimum version for gevent in order to gain python 3.13 support.
# Also set a maximum version as we had seen hangs with v25.
"gevent>=24.10.1,<25",
"httplib2",
"humanfriendly",
"lupa>=2.8",
"lxml",
"netaddr",
"oauthlib",
"paramiko",
"pexpect",
"prettytable",
"prometheus_client>=0.16.0",
"psutil>=2.1.0",
"python-dateutil",
"PyYAML",
"requests>2.13.0",
"requests-oauthlib",
"sentry-sdk",
"types-psutil",
"urllib3",
"build>=1.2.1",
]
keywords = ["teuthology", "test", "ceph", "cluster"]
classifiers = [
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"Topic :: System :: Distributed Computing",
"Topic :: System :: Filesystems",
]
[project.urls]
Repository = "https://github.com/ceph/teuthology"
[project.optional-dependencies]
manhole = ["manhole"]
rocketchat = ["rocket-python>=1.2.15"]
docs = [
"sphinx",
"sphinxcontrib-programoutput",
]
test = [
"boto>=2.0b4",
"boto3",
"coverage",
"ipy",
"mock",
"PyJWT",
"pynose",
"pytest",
"pytest-cov",
"toml",
"tox",
"tox-uv",
]
openstack = [
"openstacksdk",
"python-novaclient",
"python-openstackclient",
]
[project.scripts]
teuthology = "scripts.run:main"
teuthology-openstack = "scripts.openstack:main"
teuthology-suite = "scripts.suite:main"
teuthology-ls = "scripts.ls:main"
teuthology-worker = "scripts.worker:main"
teuthology-lock = "scripts.lock:main"
teuthology-schedule = "scripts.schedule:main"
teuthology-updatekeys = "scripts.updatekeys:main"
teuthology-update-inventory = "scripts.update_inventory:main"
teuthology-results = "scripts.results:main"
teuthology-report = "scripts.report:main"
teuthology-kill = "scripts.kill:main"
teuthology-queue = "scripts.queue:main"
teuthology-prune-logs = "scripts.prune_logs:main"
teuthology-describe = "scripts.describe:main"
teuthology-reimage = "scripts.reimage:main"
teuthology-dispatcher = "scripts.dispatcher:main"
teuthology-wait = "scripts.wait:main"
teuthology-exporter = "scripts.exporter:main"
teuthology-node-cleanup = "scripts.node_cleanup:main"
teuthology-supervisor = "scripts.supervisor:main"
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=64",
"wheel",
"setuptools-scm>=8",
]
[tool.uv]
cache-keys = [{ file = "pyproject.toml" }, { git = { commit = true, tags = true } }]
[tool.setuptools.packages.find]
exclude = [
"tests*",
"docs*",
]
[tool.setuptools_scm]
version_scheme = "python-simplified-semver"
[tool.ruff]
lint.select = ["F", "E9"]
[tool.pytest]
testpaths = ["tests"]
norecursedirs = [".git", "build", "virtualenv", "teuthology.egg-info", ".tox", "*/integration", "teuthology/task/tests"]
log_cli = true
log_level = "NOTSET"
addopts = ["-p", "no:cacheprovider"]