-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (42 loc) · 1.06 KB
/
Copy pathpyproject.toml
File metadata and controls
45 lines (42 loc) · 1.06 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
[project]
name = "cloud-pipelines-backend"
version = "0.1.0"
description = "Backend for Cloud Pipelines"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"alembic>=1.18.4",
"bugsnag>=4.9.0,<5",
"cloud-pipelines>=0.23.2.4",
"fastapi[standard]>=0.115.12",
"kubernetes>=33.1.0,<36",
"opentelemetry-api>=1.41.1",
"opentelemetry-exporter-otlp-proto-grpc>=1.41.1",
"opentelemetry-exporter-otlp-proto-http>=1.39.1",
"opentelemetry-instrumentation-fastapi>=0.60b1",
"opentelemetry-sdk>=1.39.1",
"sqlalchemy>=2.0.49",
]
[dependency-groups]
dev = [
"black>=26.1.0",
"kubernetes-stubs-elephant-fork>=35.0.0.post2",
"pytest>=9.0.3",
"pytest-asyncio>=0.25.2",
]
huggingface = [
"huggingface-hub[oauth]>=0.35.3",
]
skypilot = [
"skypilot>=0.12.1",
]
[tool.uv]
exclude-newer = "7 days"
index-url = "https://pypi.org/simple"
extra-index-url = []
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--import-mode=importlib"
[tool.setuptools.packages.find]
include = ["cloud_pipelines_backend*"]
namespaces = true