yamlrocks 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.
- yamlrocks-0.0.1/.gitignore +3 -0
- yamlrocks-0.0.1/PKG-INFO +25 -0
- yamlrocks-0.0.1/README.md +9 -0
- yamlrocks-0.0.1/pyproject.toml +23 -0
- yamlrocks-0.0.1/yamlrocks/__init__.py +13 -0
yamlrocks-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: yamlrocks
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Reserved name for the upcoming YAMLRocks YAML library for Python.
|
|
5
|
+
Project-URL: Homepage, https://github.com/frenck/yamlrocks
|
|
6
|
+
Project-URL: Source, https://github.com/frenck/yamlrocks
|
|
7
|
+
Author: Franck Nijhof
|
|
8
|
+
Keywords: placeholder,reserved,yaml
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
14
|
+
Requires-Python: >=3.9
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# YAMLRocks
|
|
18
|
+
|
|
19
|
+
This is a placeholder release that reserves the `yamlrocks` name on PyPI.
|
|
20
|
+
|
|
21
|
+
The real YAMLRocks, a fast and correct Rust-backed YAML library for Python, is on
|
|
22
|
+
the way. This `0.0.1` release contains no functionality and intentionally raises
|
|
23
|
+
on import; do not depend on it.
|
|
24
|
+
|
|
25
|
+
Follow progress at https://github.com/frenck/yamlrocks.
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# YAMLRocks
|
|
2
|
+
|
|
3
|
+
This is a placeholder release that reserves the `yamlrocks` name on PyPI.
|
|
4
|
+
|
|
5
|
+
The real YAMLRocks, a fast and correct Rust-backed YAML library for Python, is on
|
|
6
|
+
the way. This `0.0.1` release contains no functionality and intentionally raises
|
|
7
|
+
on import; do not depend on it.
|
|
8
|
+
|
|
9
|
+
Follow progress at https://github.com/frenck/yamlrocks.
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "yamlrocks"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Reserved name for the upcoming YAMLRocks YAML library for Python."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
authors = [{ name = "Franck Nijhof" }]
|
|
12
|
+
keywords = ["yaml", "placeholder", "reserved"]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 1 - Planning",
|
|
15
|
+
"Intended Audience :: Developers",
|
|
16
|
+
"License :: OSI Approved :: MIT License",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
"Topic :: Software Development :: Libraries",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[project.urls]
|
|
22
|
+
Homepage = "https://github.com/frenck/yamlrocks"
|
|
23
|
+
Source = "https://github.com/frenck/yamlrocks"
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"""Placeholder package reserving the ``yamlrocks`` name on PyPI.
|
|
2
|
+
|
|
3
|
+
The real YAMLRocks, a fast Rust-backed YAML library for Python, is on the way.
|
|
4
|
+
This release has no functionality and raises on import so nothing depends on it.
|
|
5
|
+
See https://github.com/frenck/yamlrocks.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
__version__ = "0.0.1"
|
|
9
|
+
|
|
10
|
+
raise RuntimeError(
|
|
11
|
+
"yamlrocks 0.0.1 is a placeholder that only reserves the name on PyPI. "
|
|
12
|
+
"The real library is coming soon: https://github.com/frenck/yamlrocks"
|
|
13
|
+
)
|