modelgt 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.
- modelgt-0.0.0/PKG-INFO +9 -0
- modelgt-0.0.0/README.md +0 -0
- modelgt-0.0.0/pyproject.toml +21 -0
- modelgt-0.0.0/setup.cfg +4 -0
- modelgt-0.0.0/src/modelgt/__init__.py +2 -0
- modelgt-0.0.0/src/modelgt.egg-info/PKG-INFO +9 -0
- modelgt-0.0.0/src/modelgt.egg-info/SOURCES.txt +7 -0
- modelgt-0.0.0/src/modelgt.egg-info/dependency_links.txt +1 -0
- modelgt-0.0.0/src/modelgt.egg-info/top_level.txt +1 -0
modelgt-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: modelgt
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Name reserved for the modelgt project.
|
|
5
|
+
License: MIT
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
+
Requires-Python: >=3.8
|
|
9
|
+
Description-Content-Type: text/markdown
|
modelgt-0.0.0/README.md
ADDED
|
File without changes
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "modelgt"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "Name reserved for the modelgt project."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
license = {text = "MIT"}
|
|
12
|
+
classifiers = [
|
|
13
|
+
"Programming Language :: Python :: 3",
|
|
14
|
+
"License :: OSI Approved :: MIT License",
|
|
15
|
+
]
|
|
16
|
+
|
|
17
|
+
[tool.setuptools]
|
|
18
|
+
package-dir = {"" = "src"}
|
|
19
|
+
|
|
20
|
+
[tool.setuptools.packages.find]
|
|
21
|
+
where = ["src"]
|
modelgt-0.0.0/setup.cfg
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: modelgt
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Name reserved for the modelgt project.
|
|
5
|
+
License: MIT
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
+
Requires-Python: >=3.8
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
modelgt
|