-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (65 loc) · 1.51 KB
/
pyproject.toml
File metadata and controls
75 lines (65 loc) · 1.51 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "Babylon"
authors = [{ name = "Mohcine Tor", email = "mohcine.tor@cosmotech.com" },
{ name = "Diamantis Sellis", email = "diamantis.sellis@cosmotech.com"}]
description = "A CLI made to simplify the deployment and management of the CosmoTech Platform and Solutions"
dependencies = [
"azure-identity",
"azure-mgmt-storage",
"azure-storage-blob>=12.28.0",
"click",
"click-log",
"cryptography",
"pyyaml",
"requests>=2.32.5",
"rich",
"Mako",
"polling2",
"inquirer",
"flatten_json",
"dynaconf",
"azure-mgmt-authorization>=4.0.0",
"kubernetes>=35.0.0",
"cosmotech-api==5.0.1"
]
dynamic = ["version"]
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.12"
license = "MIT"
[dependency-groups]
dev = [
"ruff>=0.15.7",
"pytest>=9.0.2",
]
doc = [
"mkdocs",
"mkdocs-click",
"mkdocs-gen-files",
"mkdocs-material",
"mkdocstrings[python]",
"mike",
"pymdown-extensions",
"requirements-parser",
]
[tool.hatch.envs.default]
installer = "uv"
[project.urls]
Homepage = "https://www.cosmotech.com"
Source = "https://github.com/Cosmo-Tech/Babylon"
Documentation = "https://cosmo-tech.github.io/Babylon/latest/"
[project.scripts]
babylon = "Babylon.main:main"
[tool.hatch.version]
path = "Babylon/version.py"
[tool.ruff]
line-length = 135
[tool.ruff.lint]
select = ["E", "F", "I"]
[tool.ruff.format]
[pytest]
minversion = "9.0"
pythonpath = ["Babylon"]
testpaths = ["test"]