-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 1003 Bytes
/
pyproject.toml
File metadata and controls
40 lines (34 loc) · 1003 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
36
37
38
39
40
[project]
name = "tangle-cli"
version = "0.0.1"
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",
"cloud-pipelines-backend",
"typer>=0.24.1",
]
[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.scripts]
tangle = "tangle_cli.cli:app"
[build-system]
requires = ["uv_build>=0.11.2,<0.12.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
# Set the module-root to an empty string for a flat layout
module-root = ""
[tool.uv.sources]
cloud-pipelines-backend = { git = "https://github.com/TangleML/tangle", rev = "stable_cli" }
[dependency-groups]
dev = [
"pytest>=9.0.2",
]