-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (68 loc) · 2.06 KB
/
Copy pathpyproject.toml
File metadata and controls
77 lines (68 loc) · 2.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
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
76
77
[project]
name = "tangle-cli"
version = "0.0.1a3"
description = "CLI for Tangle, the open-source ML pipeline orchestration platform"
readme = "README.md"
authors = [
{ name = "Alexey Volkov", email = "alexey.volkov@ark-kun.com" },
{ name = "Tangle authors" },
]
requires-python = ">=3.10"
dependencies = [
"cloud-pipelines>=0.26.3.12",
"cyclopts>=4.16.1",
"docstring-parser>=0.16",
"httpx>=0.28.1",
"jinja2>=3.1",
"platformdirs>=4.10.0",
"pydantic>=2.0",
"pyyaml>=6.0",
"requests>=2.32.0",
"tangle-api==0.0.1a3",
"tomli>=2.0; python_version < '3.11'",
]
[project.urls]
Homepage = "https://tangleml.com"
Documentation = "https://tangleml.com/docs/"
Repository = "https://github.com/TangleML/tangle-cli"
Issues = "https://github.com/TangleML/tangle-cli/issues"
[project.optional-dependencies]
# Compatibility alias: tangle-api is now part of the default public install.
native = []
[project.scripts]
tangle = "tangle_cli.cli:main"
tangle-cli = "tangle_cli.cli:main"
[build-system]
requires = ["uv_build>=0.11.2,<0.12.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-root = "packages/tangle-cli/src"
[tool.uv.sources]
cloud-pipelines-backend = { git = "https://github.com/TangleML/tangle", rev = "stable_cli" }
tangle-api = { workspace = true }
tangle-cli = { workspace = true }
[tool.uv.workspace]
members = ["packages/tangle-api"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[dependency-groups]
dev = [
"pytest>=9.0.2",
"tangle-api",
]
codegen = [
# Mirrors third_party/tangle backend import requirements used by
# `python -m tangle_cli.openapi.codegen --backend-path third_party/tangle`.
"cloud-pipelines-backend",
"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",
]