-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpyproject.toml
60 lines (53 loc) · 1.69 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
57
58
59
60
[tool.poetry]
name = "magnum-cluster-api"
version = "0.24.2"
description = "Cluster API driver for Magnum"
authors = ["Mohammed Naser <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
packages = [{include = "magnum_cluster_api"}]
include = ["magnum_cluster_api/charts/**/*"]
[tool.poetry.dependencies]
"oslo.concurrency" = ">=4.5.0"
"oslo.config" = ">=8.8.0"
"oslo.context" = ">=4.1.0"
"oslo.log" = ">=4.7.0"
"oslo.privsep" = ">=2.7.0"
"oslo.service" = ">=2.8.0"
"python-manilaclient" = ">=3.3.2"
certifi = "*"
click = ">=8.0.4"
diskcache = ">=5.6.1"
haproxyadmin = "^0.2.4"
kubernetes = ">=24.2.0"
magnum = ">=15.0.0"
platformdirs = ">=2.4.0"
pykube-ng = "*"
pyroute2 = ">=0.3.4"
python = "^3.8"
requests = ">=2.27.1"
semver = "^2.0.0"
sherlock = "^0.4.1"
shortuuid = "*"
[tool.poetry.group.dev.dependencies]
fixtures = "^4.1.0"
oslotest = "^5.0.0"
pytest = "<7"
pytest-mock = "^3.6.1"
responses = "^0.25.0"
[build-system]
requires = ["setuptools", "poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
magnum-cluster-api-image-builder = "magnum_cluster_api.cmd.image_builder:main"
magnum-cluster-api-image-loader = "magnum_cluster_api.cmd.image_loader:main"
magnum-cluster-api-proxy = "magnum_cluster_api.cmd.proxy:main"
[tool.poetry.plugins."magnum.drivers"]
"k8s_cluster_api_ubuntu" = "magnum_cluster_api.driver:UbuntuDriver"
"k8s_cluster_api_ubuntu_focal" = "magnum_cluster_api.driver:UbuntuFocalDriver"
"k8s_cluster_api_flatcar" = "magnum_cluster_api.driver:FlatcarDriver"
"k8s_cluster_api_rockylinux" = "magnum_cluster_api.driver:RockyLinuxDriver"
[tool.poetry.plugins."oslo.config.opts"]
magnum_cluster_api = "magnum_cluster_api.conf:list_opts"
[tool.isort]
profile = "black"