-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (39 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
47 lines (39 loc) · 1.11 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
[project]
name = "ceph-devstack"
authors = [{ name = "Zack Cerza", email = "zack@cerza.org" }]
license = "MIT"
license-files = ["LICENSE"]
classifiers = [
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
]
keywords = ["podman", "ceph"]
description = "Run a full teuthology lab on your laptop!"
requires-python = ">=3.10"
dependencies = ["packaging", "pre-commit", "PyYAML", "tomlkit"]
dynamic = ["version"]
[project.readme]
file = "README.md"
content-type = "text/x-markdown"
[project.urls]
Homepage = "https://github.com/ceph/ceph-devstack"
[project.optional-dependencies]
test = ["pytest", "pytest-asyncio", "tox", "tox-uv"]
[project.scripts]
ceph-devstack = "ceph_devstack.cli:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
namespaces = false
[tool.setuptools_scm]
version_scheme = "python-simplified-semver"
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=64",
"wheel",
"setuptools-scm>=8",
]