aclip 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.
- aclip-0.0.1/PKG-INFO +21 -0
- aclip-0.0.1/README.md +5 -0
- aclip-0.0.1/aclip.egg-info/PKG-INFO +21 -0
- aclip-0.0.1/aclip.egg-info/SOURCES.txt +7 -0
- aclip-0.0.1/aclip.egg-info/dependency_links.txt +1 -0
- aclip-0.0.1/aclip.egg-info/top_level.txt +1 -0
- aclip-0.0.1/aclip_placeholder.py +2 -0
- aclip-0.0.1/pyproject.toml +26 -0
- aclip-0.0.1/setup.cfg +4 -0
aclip-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: aclip
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Official reserved package name for the ACLIP formal name.
|
|
5
|
+
Author: Rendo
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/rendo-studio/aclip
|
|
8
|
+
Project-URL: Repository, https://github.com/rendo-studio/aclip
|
|
9
|
+
Keywords: rendo,reserved,placeholder
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Requires-Python: >=3.9
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# aclip
|
|
18
|
+
|
|
19
|
+
This package is an official reserved placeholder for the Rendo project.
|
|
20
|
+
|
|
21
|
+
It exists to protect the public package name while the real implementation is being prepared.
|
aclip-0.0.1/README.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: aclip
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Official reserved package name for the ACLIP formal name.
|
|
5
|
+
Author: Rendo
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/rendo-studio/aclip
|
|
8
|
+
Project-URL: Repository, https://github.com/rendo-studio/aclip
|
|
9
|
+
Keywords: rendo,reserved,placeholder
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Requires-Python: >=3.9
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# aclip
|
|
18
|
+
|
|
19
|
+
This package is an official reserved placeholder for the Rendo project.
|
|
20
|
+
|
|
21
|
+
It exists to protect the public package name while the real implementation is being prepared.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
aclip_placeholder
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "aclip"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Official reserved package name for the ACLIP formal name."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
authors = [{ name = "Rendo" }]
|
|
13
|
+
keywords = ["rendo", "reserved", "placeholder"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"License :: OSI Approved :: MIT License",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[project.urls]
|
|
22
|
+
Homepage = "https://github.com/rendo-studio/aclip"
|
|
23
|
+
Repository = "https://github.com/rendo-studio/aclip"
|
|
24
|
+
|
|
25
|
+
[tool.setuptools]
|
|
26
|
+
py-modules = ["aclip_placeholder"]
|
aclip-0.0.1/setup.cfg
ADDED