ascerta 0.0.0a0__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.
@@ -0,0 +1,18 @@
1
+ Metadata-Version: 2.5
2
+ Name: ascerta
3
+ Version: 0.0.0a0
4
+ Summary: Reserved package name. Placeholder release with no functionality.
5
+ Author-email: Pay-i <support@payi.com>
6
+ License-Expression: Apache-2.0
7
+ Keywords: placeholder,reserved
8
+ Classifier: Development Status :: 1 - Planning
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: Operating System :: OS Independent
11
+ Classifier: Programming Language :: Python :: 3
12
+ Requires-Python: >=3.10
13
+ Description-Content-Type: text/markdown
14
+
15
+ # ascerta
16
+
17
+ This name is reserved. The package currently contains no functionality;
18
+ a real release will follow.
@@ -0,0 +1,4 @@
1
+ # ascerta
2
+
3
+ This name is reserved. The package currently contains no functionality;
4
+ a real release will follow.
@@ -0,0 +1,23 @@
1
+ [project]
2
+ name = "ascerta"
3
+ version = "0.0.0-alpha.0"
4
+ description = "Reserved package name. Placeholder release with no functionality."
5
+ readme = "README.md"
6
+ requires-python = ">=3.10"
7
+ license = "Apache-2.0"
8
+ authors = [{ name = "Pay-i", email = "support@payi.com" }]
9
+ keywords = ["placeholder", "reserved"]
10
+ classifiers = [
11
+ "Development Status :: 1 - Planning",
12
+ "Intended Audience :: Developers",
13
+ "Operating System :: OS Independent",
14
+ "Programming Language :: Python :: 3",
15
+ ]
16
+ dependencies = []
17
+
18
+ [build-system]
19
+ requires = ["hatchling"]
20
+ build-backend = "hatchling.build"
21
+
22
+ [tool.hatch.build.targets.wheel]
23
+ packages = ["src/ascerta"]
@@ -0,0 +1,3 @@
1
+ """Placeholder package. This name is reserved; no functionality is provided yet."""
2
+
3
+ __version__ = "0.0.0a0"