yt-tools-cli 0.0.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.
- yt_tools_cli-0.0.0/PKG-INFO +36 -0
- yt_tools_cli-0.0.0/README.md +23 -0
- yt_tools_cli-0.0.0/pyproject.toml +23 -0
- yt_tools_cli-0.0.0/setup.cfg +4 -0
- yt_tools_cli-0.0.0/yt_tools_cli.egg-info/PKG-INFO +36 -0
- yt_tools_cli-0.0.0/yt_tools_cli.egg-info/SOURCES.txt +6 -0
- yt_tools_cli-0.0.0/yt_tools_cli.egg-info/dependency_links.txt +1 -0
- yt_tools_cli-0.0.0/yt_tools_cli.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: yt-tools-cli
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Name reservation for yt-tools — agent-first YouTube CLIs (transcript, frames, audio FFT, OCR)
|
|
5
|
+
Author: Victor Kuznetsov
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/kzntsv-dev/yt-tools
|
|
8
|
+
Project-URL: Repository, https://github.com/kzntsv-dev/yt-tools
|
|
9
|
+
Project-URL: Issues, https://github.com/kzntsv-dev/yt-tools/issues
|
|
10
|
+
Keywords: youtube,transcript,agents,cli,yt-dlp,ffmpeg,ocr,fft
|
|
11
|
+
Requires-Python: <3.13,>=3.10
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# yt-tools-cli — name reservation
|
|
15
|
+
|
|
16
|
+
**This is a placeholder distribution, it contains no code.** It exists so the
|
|
17
|
+
distribution name `yt-tools-cli` belongs to the project while the real release is
|
|
18
|
+
prepared.
|
|
19
|
+
|
|
20
|
+
The package itself is **yt-tools**:
|
|
21
|
+
|
|
22
|
+
- Repository: https://github.com/kzntsv-dev/yt-tools
|
|
23
|
+
- Install (development tree, until the release lands):
|
|
24
|
+
`pipx install git+https://github.com/kzntsv-dev/yt-tools`
|
|
25
|
+
|
|
26
|
+
Once the real release is published, `pip install yt-tools-cli` (or
|
|
27
|
+
`pipx install yt-tools-cli`) will install the toolkit and this `0.0.0` stub will
|
|
28
|
+
be superseded — `0.0.0` sorts below every real version.
|
|
29
|
+
|
|
30
|
+
## Why the name differs from the project
|
|
31
|
+
|
|
32
|
+
PyPI refuses a new project whose name is *too similar* to an existing one: it
|
|
33
|
+
compares a lossy folding of names (`. _ -` removed, `l|i`→`1`, `o`→`0`).
|
|
34
|
+
`yt-tools` folds to `ytt001s` — the same class as the existing `yttools` — so it
|
|
35
|
+
cannot be registered. The import name stays `yt_tools`, the commands stay `yt-*`,
|
|
36
|
+
and the repository and plugin stay `yt-tools`.
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# yt-tools-cli — name reservation
|
|
2
|
+
|
|
3
|
+
**This is a placeholder distribution, it contains no code.** It exists so the
|
|
4
|
+
distribution name `yt-tools-cli` belongs to the project while the real release is
|
|
5
|
+
prepared.
|
|
6
|
+
|
|
7
|
+
The package itself is **yt-tools**:
|
|
8
|
+
|
|
9
|
+
- Repository: https://github.com/kzntsv-dev/yt-tools
|
|
10
|
+
- Install (development tree, until the release lands):
|
|
11
|
+
`pipx install git+https://github.com/kzntsv-dev/yt-tools`
|
|
12
|
+
|
|
13
|
+
Once the real release is published, `pip install yt-tools-cli` (or
|
|
14
|
+
`pipx install yt-tools-cli`) will install the toolkit and this `0.0.0` stub will
|
|
15
|
+
be superseded — `0.0.0` sorts below every real version.
|
|
16
|
+
|
|
17
|
+
## Why the name differs from the project
|
|
18
|
+
|
|
19
|
+
PyPI refuses a new project whose name is *too similar* to an existing one: it
|
|
20
|
+
compares a lossy folding of names (`. _ -` removed, `l|i`→`1`, `o`→`0`).
|
|
21
|
+
`yt-tools` folds to `ytt001s` — the same class as the existing `yttools` — so it
|
|
22
|
+
cannot be registered. The import name stays `yt_tools`, the commands stay `yt-*`,
|
|
23
|
+
and the repository and plugin stay `yt-tools`.
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "yt-tools-cli"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "Name reservation for yt-tools — agent-first YouTube CLIs (transcript, frames, audio FFT, OCR)"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10,<3.13"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
authors = [{ name = "Victor Kuznetsov" }]
|
|
13
|
+
keywords = ["youtube", "transcript", "agents", "cli", "yt-dlp", "ffmpeg", "ocr", "fft"]
|
|
14
|
+
|
|
15
|
+
[project.urls]
|
|
16
|
+
Homepage = "https://github.com/kzntsv-dev/yt-tools"
|
|
17
|
+
Repository = "https://github.com/kzntsv-dev/yt-tools"
|
|
18
|
+
Issues = "https://github.com/kzntsv-dev/yt-tools/issues"
|
|
19
|
+
|
|
20
|
+
# Deliberately empty: this distribution reserves the name and ships no code.
|
|
21
|
+
# The real package is published as yt-tools-cli from the repository above.
|
|
22
|
+
[tool.setuptools]
|
|
23
|
+
packages = []
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: yt-tools-cli
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Name reservation for yt-tools — agent-first YouTube CLIs (transcript, frames, audio FFT, OCR)
|
|
5
|
+
Author: Victor Kuznetsov
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/kzntsv-dev/yt-tools
|
|
8
|
+
Project-URL: Repository, https://github.com/kzntsv-dev/yt-tools
|
|
9
|
+
Project-URL: Issues, https://github.com/kzntsv-dev/yt-tools/issues
|
|
10
|
+
Keywords: youtube,transcript,agents,cli,yt-dlp,ffmpeg,ocr,fft
|
|
11
|
+
Requires-Python: <3.13,>=3.10
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# yt-tools-cli — name reservation
|
|
15
|
+
|
|
16
|
+
**This is a placeholder distribution, it contains no code.** It exists so the
|
|
17
|
+
distribution name `yt-tools-cli` belongs to the project while the real release is
|
|
18
|
+
prepared.
|
|
19
|
+
|
|
20
|
+
The package itself is **yt-tools**:
|
|
21
|
+
|
|
22
|
+
- Repository: https://github.com/kzntsv-dev/yt-tools
|
|
23
|
+
- Install (development tree, until the release lands):
|
|
24
|
+
`pipx install git+https://github.com/kzntsv-dev/yt-tools`
|
|
25
|
+
|
|
26
|
+
Once the real release is published, `pip install yt-tools-cli` (or
|
|
27
|
+
`pipx install yt-tools-cli`) will install the toolkit and this `0.0.0` stub will
|
|
28
|
+
be superseded — `0.0.0` sorts below every real version.
|
|
29
|
+
|
|
30
|
+
## Why the name differs from the project
|
|
31
|
+
|
|
32
|
+
PyPI refuses a new project whose name is *too similar* to an existing one: it
|
|
33
|
+
compares a lossy folding of names (`. _ -` removed, `l|i`→`1`, `o`→`0`).
|
|
34
|
+
`yt-tools` folds to `ytt001s` — the same class as the existing `yttools` — so it
|
|
35
|
+
cannot be registered. The import name stays `yt_tools`, the commands stay `yt-*`,
|
|
36
|
+
and the repository and plugin stay `yt-tools`.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|