-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (33 loc) · 875 Bytes
/
pyproject.toml
File metadata and controls
35 lines (33 loc) · 875 Bytes
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
[project]
name = "cloud-pipelines-backend"
version = "0.1.0"
description = "Backend for Cloud Pipelines"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"cloud-pipelines>=0.23.2.4",
"fastapi[standard]>=0.115.12",
"kubernetes>=33.1.0",
"opentelemetry-api>=1.28.2",
"opentelemetry-exporter-otlp-proto-grpc>=1.39.1",
"opentelemetry-exporter-otlp-proto-http>=1.39.1",
"opentelemetry-instrumentation-fastapi>=0.60b1",
"opentelemetry-sdk>=1.39.1",
"requests<2.32.0",
"sqlalchemy>=2.0.41",
]
[dependency-groups]
dev = [
"black>=26.1.0",
"pytest>=8.4.2",
"pytest-asyncio>=0.25.2",
]
huggingface = [
"huggingface-hub[oauth]>=0.35.3",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--import-mode=importlib"
[tool.setuptools.packages.find]
include = ["cloud_pipelines_backend*"]
namespaces = true