buto 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.
- buto-0.0.1/.gitignore +3 -0
- buto-0.0.1/PKG-INFO +28 -0
- buto-0.0.1/README.md +9 -0
- buto-0.0.1/buto/__init__.py +10 -0
- buto-0.0.1/pyproject.toml +45 -0
buto-0.0.1/.gitignore
ADDED
buto-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: buto
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Reserved name held by Cruxia-Labs. Contains no implementation; installing it does nothing.
|
|
5
|
+
Project-URL: Homepage, https://github.com/Cruxia-Labs
|
|
6
|
+
Author-email: Mars Ausili <mars@cruxia.ai>
|
|
7
|
+
License: Apache-2.0
|
|
8
|
+
Keywords: buto,placeholder,reserved
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
17
|
+
Requires-Python: >=3.10
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
|
|
20
|
+
# buto
|
|
21
|
+
|
|
22
|
+
**This is a reserved name. This release contains no implementation, and installing it does nothing.**
|
|
23
|
+
|
|
24
|
+
This 0.0.1 release is a reserved-name placeholder held by [Cruxia-Labs](https://github.com/Cruxia-Labs). It contains no implementation, defines no submodules, and installing it does nothing.
|
|
25
|
+
|
|
26
|
+
The first working release will be announced under the [Cruxia-Labs](https://github.com/Cruxia-Labs) organization, with its source repository, its test suite, and offline verification instructions.
|
|
27
|
+
|
|
28
|
+
Licensed Apache-2.0.
|
buto-0.0.1/README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# buto
|
|
2
|
+
|
|
3
|
+
**This is a reserved name. This release contains no implementation, and installing it does nothing.**
|
|
4
|
+
|
|
5
|
+
This 0.0.1 release is a reserved-name placeholder held by [Cruxia-Labs](https://github.com/Cruxia-Labs). It contains no implementation, defines no submodules, and installing it does nothing.
|
|
6
|
+
|
|
7
|
+
The first working release will be announced under the [Cruxia-Labs](https://github.com/Cruxia-Labs) organization, with its source repository, its test suite, and offline verification instructions.
|
|
8
|
+
|
|
9
|
+
Licensed Apache-2.0.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"""Reserved distribution name — no implementation ships here.
|
|
2
|
+
|
|
3
|
+
This 0.0.1 release holds the name while the first working release is
|
|
4
|
+
prepared under the Cruxia-Labs organization. It is deliberately EMPTY —
|
|
5
|
+
no submodules, no console scripts — so nothing here can shadow, or be
|
|
6
|
+
mistaken for, the real thing. Do not add submodules to this placeholder.
|
|
7
|
+
"""
|
|
8
|
+
|
|
9
|
+
__version__ = "0.0.1"
|
|
10
|
+
__all__: list = []
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "buto"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Reserved name held by Cruxia-Labs. Contains no implementation; installing it does nothing."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = {text = "Apache-2.0"}
|
|
11
|
+
requires-python = ">=3.10"
|
|
12
|
+
authors = [
|
|
13
|
+
{name = "Mars Ausili", email = "mars@cruxia.ai"},
|
|
14
|
+
]
|
|
15
|
+
keywords = ["placeholder", "reserved", "buto"]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 1 - Planning",
|
|
18
|
+
"Intended Audience :: Developers",
|
|
19
|
+
"License :: OSI Approved :: Apache Software License",
|
|
20
|
+
"Programming Language :: Python :: 3",
|
|
21
|
+
"Programming Language :: Python :: 3.10",
|
|
22
|
+
"Programming Language :: Python :: 3.11",
|
|
23
|
+
"Programming Language :: Python :: 3.12",
|
|
24
|
+
"Programming Language :: Python :: 3.13",
|
|
25
|
+
]
|
|
26
|
+
dependencies = []
|
|
27
|
+
|
|
28
|
+
# THE ORG ROOT, NOT A PER-PACKAGE REPO. PyPI metadata is IMMUTABLE PER VERSION;
|
|
29
|
+
# the description above is deliberately generic — it names no product, so no
|
|
30
|
+
# later pivot can make this release's frozen metadata false.
|
|
31
|
+
[project.urls]
|
|
32
|
+
Homepage = "https://github.com/Cruxia-Labs"
|
|
33
|
+
|
|
34
|
+
[tool.hatch.build]
|
|
35
|
+
exclude = ["**/__pycache__", "**/*.pyc"]
|
|
36
|
+
|
|
37
|
+
# ONLY these files enter the sdist (pyproject.toml + PKG-INFO are implicit,
|
|
38
|
+
# and hatchling always bundles a .gitignore — the local one here, kept benign
|
|
39
|
+
# on purpose: without a local file it walks up and bundles an ancestor's).
|
|
40
|
+
# The sdist member list is an audited, closed set.
|
|
41
|
+
[tool.hatch.build.targets.sdist]
|
|
42
|
+
only-include = ["buto", "README.md"]
|
|
43
|
+
|
|
44
|
+
[tool.hatch.build.targets.wheel]
|
|
45
|
+
packages = ["buto"]
|