tavus 0.4.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- tavus-0.4.0/.gitignore +17 -0
- tavus-0.4.0/PKG-INFO +23 -0
- tavus-0.4.0/README.md +14 -0
- tavus-0.4.0/pyproject.toml +20 -0
tavus-0.4.0/.gitignore
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
.env
|
|
2
|
+
.venv/
|
|
3
|
+
.pytest_cache/
|
|
4
|
+
.ruff_cache/
|
|
5
|
+
__pycache__/
|
|
6
|
+
*.py[cod]
|
|
7
|
+
dist/
|
|
8
|
+
build/
|
|
9
|
+
*.egg-info/
|
|
10
|
+
node_modules/
|
|
11
|
+
workers/**/.dev.vars
|
|
12
|
+
workers/**/.wrangler/
|
|
13
|
+
|
|
14
|
+
# Claude Code local/runtime state (keep shared config in .claude/)
|
|
15
|
+
.claude/scheduled_tasks.lock
|
|
16
|
+
.claude/scheduled_tasks.json
|
|
17
|
+
.claude/settings.local.json
|
tavus-0.4.0/PKG-INFO
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: tavus
|
|
3
|
+
Version: 0.4.0
|
|
4
|
+
Summary: Official alias for tavus-cli, the Tavus CLI and MCP server.
|
|
5
|
+
Project-URL: Homepage, https://github.com/Tavus-Engineering/tavus-mcp
|
|
6
|
+
Requires-Python: >=3.11
|
|
7
|
+
Requires-Dist: tavus-cli==0.4.0
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# tavus
|
|
11
|
+
|
|
12
|
+
Official alias for [`tavus-cli`](https://pypi.org/project/tavus-cli/), the
|
|
13
|
+
Tavus CLI and MCP server. Installing this package installs `tavus-cli`, which
|
|
14
|
+
provides the `tavus` command and the `tavus-mcp` MCP server.
|
|
15
|
+
|
|
16
|
+
Prefer installing the real package directly:
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
uv tool install tavus-cli
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
Source and documentation:
|
|
23
|
+
<https://github.com/Tavus-Engineering/tavus-mcp>
|
tavus-0.4.0/README.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# tavus
|
|
2
|
+
|
|
3
|
+
Official alias for [`tavus-cli`](https://pypi.org/project/tavus-cli/), the
|
|
4
|
+
Tavus CLI and MCP server. Installing this package installs `tavus-cli`, which
|
|
5
|
+
provides the `tavus` command and the `tavus-mcp` MCP server.
|
|
6
|
+
|
|
7
|
+
Prefer installing the real package directly:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
uv tool install tavus-cli
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Source and documentation:
|
|
14
|
+
<https://github.com/Tavus-Engineering/tavus-mcp>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "tavus"
|
|
3
|
+
version = "0.4.0" # x-release-please-version
|
|
4
|
+
description = "Official alias for tavus-cli, the Tavus CLI and MCP server."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.11"
|
|
7
|
+
dependencies = [
|
|
8
|
+
"tavus-cli==0.4.0", # x-release-please-version
|
|
9
|
+
]
|
|
10
|
+
|
|
11
|
+
[project.urls]
|
|
12
|
+
Homepage = "https://github.com/Tavus-Engineering/tavus-mcp"
|
|
13
|
+
|
|
14
|
+
[build-system]
|
|
15
|
+
requires = ["hatchling"]
|
|
16
|
+
build-backend = "hatchling.build"
|
|
17
|
+
|
|
18
|
+
# Metadata-only alias package: it ships no code of its own.
|
|
19
|
+
[tool.hatch.build.targets.wheel]
|
|
20
|
+
bypass-selection = true
|