kinocut 0.0.1__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.
- kinocut-0.0.1/PKG-INFO +22 -0
- kinocut-0.0.1/README.md +11 -0
- kinocut-0.0.1/pyproject.toml +19 -0
- kinocut-0.0.1/src/kinocut/__init__.py +2 -0
kinocut-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: kinocut
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Kinocut — guardrailed video editing engine for AI agents. Name reservation: the project currently ships as mcp-video and is renaming to Kinocut. See https://kinocut.dev
|
|
5
|
+
Project-URL: Homepage, https://kinocut.dev
|
|
6
|
+
Project-URL: Repository, https://github.com/KyaniteLabs/mcp-video
|
|
7
|
+
Author-email: KyaniteLabs <info@kyanitelabs.tech>
|
|
8
|
+
License-Expression: Apache-2.0
|
|
9
|
+
Requires-Python: >=3.11
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# Kinocut
|
|
13
|
+
|
|
14
|
+
**Name reservation.** Kinocut is the new name of [mcp-video](https://github.com/KyaniteLabs/mcp-video) — the guardrailed video editing engine for AI agents (MCP server, Python library, and CLI). The rename lands after the current mcp-video release cycle.
|
|
15
|
+
|
|
16
|
+
Until then, install the real package:
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
pip install mcp-video
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
Home: https://kinocut.dev · KyaniteLabs
|
kinocut-0.0.1/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Kinocut
|
|
2
|
+
|
|
3
|
+
**Name reservation.** Kinocut is the new name of [mcp-video](https://github.com/KyaniteLabs/mcp-video) — the guardrailed video editing engine for AI agents (MCP server, Python library, and CLI). The rename lands after the current mcp-video release cycle.
|
|
4
|
+
|
|
5
|
+
Until then, install the real package:
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pip install mcp-video
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Home: https://kinocut.dev · KyaniteLabs
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "kinocut"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Kinocut — guardrailed video editing engine for AI agents. Name reservation: the project currently ships as mcp-video and is renaming to Kinocut. See https://kinocut.dev"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "Apache-2.0"
|
|
11
|
+
requires-python = ">=3.11"
|
|
12
|
+
authors = [{ name = "KyaniteLabs", email = "info@kyanitelabs.tech" }]
|
|
13
|
+
|
|
14
|
+
[project.urls]
|
|
15
|
+
Homepage = "https://kinocut.dev"
|
|
16
|
+
Repository = "https://github.com/KyaniteLabs/mcp-video"
|
|
17
|
+
|
|
18
|
+
[tool.hatch.build.targets.wheel]
|
|
19
|
+
packages = ["src/kinocut"]
|