gonidium 0.0.0__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.
- gonidium-0.0.0/PKG-INFO +14 -0
- gonidium-0.0.0/README.md +3 -0
- gonidium-0.0.0/gonidium/__init__.py +3 -0
- gonidium-0.0.0/gonidium.egg-info/PKG-INFO +14 -0
- gonidium-0.0.0/gonidium.egg-info/SOURCES.txt +7 -0
- gonidium-0.0.0/gonidium.egg-info/dependency_links.txt +1 -0
- gonidium-0.0.0/gonidium.egg-info/top_level.txt +1 -0
- gonidium-0.0.0/pyproject.toml +16 -0
- gonidium-0.0.0/setup.cfg +4 -0
gonidium-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: gonidium
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Gonidium package placeholder
|
|
5
|
+
Author-email: Your Name <your.email@example.com>
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
+
Classifier: Operating System :: OS Independent
|
|
9
|
+
Requires-Python: >=3.8
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# Gonidium
|
|
13
|
+
|
|
14
|
+
Placeholder package to reserve the name on PyPI.
|
gonidium-0.0.0/README.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: gonidium
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Gonidium package placeholder
|
|
5
|
+
Author-email: Your Name <your.email@example.com>
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
+
Classifier: Operating System :: OS Independent
|
|
9
|
+
Requires-Python: >=3.8
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# Gonidium
|
|
13
|
+
|
|
14
|
+
Placeholder package to reserve the name on PyPI.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
gonidium
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "gonidium"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
authors = [{name = "Your Name", email = "your.email@example.com"}]
|
|
9
|
+
description = "Gonidium package placeholder"
|
|
10
|
+
readme = "README.md"
|
|
11
|
+
requires-python = ">=3.8"
|
|
12
|
+
classifiers = [
|
|
13
|
+
"Programming Language :: Python :: 3",
|
|
14
|
+
"License :: OSI Approved :: MIT License",
|
|
15
|
+
"Operating System :: OS Independent",
|
|
16
|
+
]
|
gonidium-0.0.0/setup.cfg
ADDED