tyfold 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.
- tyfold-0.0.1/.gitignore +1 -0
- tyfold-0.0.1/LICENSE +12 -0
- tyfold-0.0.1/PKG-INFO +33 -0
- tyfold-0.0.1/README.md +10 -0
- tyfold-0.0.1/pyproject.toml +27 -0
- tyfold-0.0.1/tyfold/__init__.py +8 -0
tyfold-0.0.1/.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/dist/
|
tyfold-0.0.1/LICENSE
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
Tyfold — reserved-name placeholder
|
|
2
|
+
|
|
3
|
+
This package is a brand-protection placeholder for the Tyfold desktop
|
|
4
|
+
application (https://tyfold.com). It intentionally contains no functionality
|
|
5
|
+
and is NOT the Tyfold source code, which is proprietary and closed.
|
|
6
|
+
|
|
7
|
+
Copyright (c) 2026 Carlos Pinto. All rights reserved.
|
|
8
|
+
|
|
9
|
+
"Tyfold" is a trademark of Carlos Pinto. This placeholder exists solely to
|
|
10
|
+
reserve the package name and to prevent confusing or malicious use of the name
|
|
11
|
+
in this registry. No license to use the Tyfold name, brand, or software is
|
|
12
|
+
granted by this package.
|
tyfold-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tyfold
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Reserved name for the Tyfold desktop application (https://tyfold.com). Brand-protection placeholder — no functionality; not the Tyfold source.
|
|
5
|
+
Project-URL: Homepage, https://tyfold.com
|
|
6
|
+
Author: Carlos Pinto
|
|
7
|
+
License: Tyfold — reserved-name placeholder
|
|
8
|
+
|
|
9
|
+
This package is a brand-protection placeholder for the Tyfold desktop
|
|
10
|
+
application (https://tyfold.com). It intentionally contains no functionality
|
|
11
|
+
and is NOT the Tyfold source code, which is proprietary and closed.
|
|
12
|
+
|
|
13
|
+
Copyright (c) 2026 Carlos Pinto. All rights reserved.
|
|
14
|
+
|
|
15
|
+
"Tyfold" is a trademark of Carlos Pinto. This placeholder exists solely to
|
|
16
|
+
reserve the package name and to prevent confusing or malicious use of the name
|
|
17
|
+
in this registry. No license to use the Tyfold name, brand, or software is
|
|
18
|
+
granted by this package.
|
|
19
|
+
License-File: LICENSE
|
|
20
|
+
Keywords: placeholder,reserved,tyfold
|
|
21
|
+
Requires-Python: >=3.8
|
|
22
|
+
Description-Content-Type: text/markdown
|
|
23
|
+
|
|
24
|
+
# tyfold (reserved name)
|
|
25
|
+
|
|
26
|
+
**Name reserved for the [Tyfold](https://tyfold.com) desktop application.**
|
|
27
|
+
|
|
28
|
+
Tyfold is a proprietary, closed-source desktop control room for running many
|
|
29
|
+
Claude Code sessions at once. This PyPI package is a **brand-protection
|
|
30
|
+
placeholder** — it intentionally contains no functionality and is **not** the
|
|
31
|
+
Tyfold source.
|
|
32
|
+
|
|
33
|
+
Nothing to install here. See <https://tyfold.com>.
|
tyfold-0.0.1/README.md
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# tyfold (reserved name)
|
|
2
|
+
|
|
3
|
+
**Name reserved for the [Tyfold](https://tyfold.com) desktop application.**
|
|
4
|
+
|
|
5
|
+
Tyfold is a proprietary, closed-source desktop control room for running many
|
|
6
|
+
Claude Code sessions at once. This PyPI package is a **brand-protection
|
|
7
|
+
placeholder** — it intentionally contains no functionality and is **not** the
|
|
8
|
+
Tyfold source.
|
|
9
|
+
|
|
10
|
+
Nothing to install here. See <https://tyfold.com>.
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Defensive PyPI name reservation for the Tyfold desktop app.
|
|
2
|
+
# Publishable placeholder — holds the `tyfold` name; contains no code.
|
|
3
|
+
[project]
|
|
4
|
+
name = "tyfold"
|
|
5
|
+
version = "0.0.1"
|
|
6
|
+
description = "Reserved name for the Tyfold desktop application (https://tyfold.com). Brand-protection placeholder — no functionality; not the Tyfold source."
|
|
7
|
+
readme = "README.md"
|
|
8
|
+
requires-python = ">=3.8"
|
|
9
|
+
license = { file = "LICENSE" }
|
|
10
|
+
keywords = ["tyfold", "placeholder", "reserved"]
|
|
11
|
+
authors = [{ name = "Carlos Pinto" }]
|
|
12
|
+
|
|
13
|
+
[project.urls]
|
|
14
|
+
Homepage = "https://tyfold.com"
|
|
15
|
+
|
|
16
|
+
[build-system]
|
|
17
|
+
requires = ["hatchling"]
|
|
18
|
+
build-backend = "hatchling.build"
|
|
19
|
+
|
|
20
|
+
[tool.hatch.build.targets.wheel]
|
|
21
|
+
packages = ["tyfold"]
|
|
22
|
+
|
|
23
|
+
# Restrict the sdist to exactly these paths so no walked-up file (e.g. the repo
|
|
24
|
+
# root .gitignore, which maps the private project) leaks into the public sdist.
|
|
25
|
+
# pyproject.toml + PKG-INFO are always added by the builder.
|
|
26
|
+
[tool.hatch.build.targets.sdist]
|
|
27
|
+
only-include = ["tyfold", "README.md", "LICENSE"]
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"""Name reserved for the Tyfold desktop application — see https://tyfold.com.
|
|
2
|
+
|
|
3
|
+
Tyfold is a proprietary, closed-source desktop control room for running many
|
|
4
|
+
Claude Code sessions at once. This package is a brand-protection placeholder:
|
|
5
|
+
it intentionally contains no functionality and is not the Tyfold source.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
__version__ = "0.0.1"
|