Skip to content

Commit 90283a9

Browse files
committed
chore: replace tangle-cli with lab contents
Assisted-By: devx/f5505a8e-b863-4860-8951-135c4c748c11
1 parent edaec5e commit 90283a9

106 files changed

Lines changed: 43021 additions & 1761 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/CODEOWNERS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Require Alexey Volkov and Volv Grebennikov to review changes in this lab repo.
2+
* @Ark-kun @Volv-G

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,9 +182,9 @@ cython_debug/
182182
.abstra/
183183

184184
# Visual Studio Code
185-
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
185+
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
186186
# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
187-
# and can be added to the global gitignore or merged into this file. However, if you prefer,
187+
# and can be added to the global gitignore or merged into this file. However, if you prefer,
188188
# you could uncomment the following to ignore the entire vscode folder
189189
# .vscode/
190190

.gitmodules

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[submodule "third_party/tangle"]
2+
path = third_party/tangle
3+
url = https://github.com/TangleML/tangle
4+
branch = master

README.md

Lines changed: 535 additions & 1 deletion
Large diffs are not rendered by default.

packages/tangle-api/pyproject.toml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
[project]
2+
name = "tangle-api"
3+
version = "0.0.1"
4+
description = "Checked-in generated Tangle API models and operation proxies"
5+
readme = "../../README.md"
6+
authors = [
7+
{ name = "Alexey Volkov", email = "alexey.volkov@ark-kun.com" },
8+
{ name = "Tangle authors" },
9+
]
10+
requires-python = ">=3.10"
11+
dependencies = [
12+
"pydantic>=2.0",
13+
"tangle-cli==0.0.1",
14+
]
15+
16+
[build-system]
17+
requires = ["uv_build>=0.11.2,<0.12.0"]
18+
build-backend = "uv_build"
19+
20+
[tool.uv.build-backend]
21+
module-root = "src"

tangle_cli/__init__.py renamed to packages/tangle-api/src/tangle_api/__init__.py

File renamed without changes.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
"""Generated OpenAPI support modules."""

0 commit comments

Comments
 (0)