corvine 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.
- corvine-0.0.0/PKG-INFO +12 -0
- corvine-0.0.0/README.md +3 -0
- corvine-0.0.0/corvine/__init__.py +2 -0
- corvine-0.0.0/corvine.egg-info/PKG-INFO +12 -0
- corvine-0.0.0/corvine.egg-info/SOURCES.txt +7 -0
- corvine-0.0.0/corvine.egg-info/dependency_links.txt +1 -0
- corvine-0.0.0/corvine.egg-info/top_level.txt +1 -0
- corvine-0.0.0/pyproject.toml +16 -0
- corvine-0.0.0/setup.cfg +4 -0
corvine-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: corvine
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Reserved for Corvine. Product packages use corvine-vera / @corvine.
|
|
5
|
+
Author: nashaad
|
|
6
|
+
License: LicenseRef-Proprietary
|
|
7
|
+
Requires-Python: >=3.11
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# corvine
|
|
11
|
+
|
|
12
|
+
Reserved for Corvine. Product packages publish under `@corvine` / `corvine-vera`.
|
corvine-0.0.0/README.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: corvine
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Reserved for Corvine. Product packages use corvine-vera / @corvine.
|
|
5
|
+
Author: nashaad
|
|
6
|
+
License: LicenseRef-Proprietary
|
|
7
|
+
Requires-Python: >=3.11
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# corvine
|
|
11
|
+
|
|
12
|
+
Reserved for Corvine. Product packages publish under `@corvine` / `corvine-vera`.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
corvine
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "corvine"
|
|
3
|
+
version = "0.0.0"
|
|
4
|
+
description = "Reserved for Corvine. Product packages use corvine-vera / @corvine."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.11"
|
|
7
|
+
license = { text = "LicenseRef-Proprietary" }
|
|
8
|
+
authors = [{ name = "nashaad" }]
|
|
9
|
+
|
|
10
|
+
[build-system]
|
|
11
|
+
requires = ["setuptools>=68"]
|
|
12
|
+
build-backend = "setuptools.build_meta"
|
|
13
|
+
|
|
14
|
+
[tool.setuptools.packages.find]
|
|
15
|
+
where = ["."]
|
|
16
|
+
include = ["corvine*"]
|
corvine-0.0.0/setup.cfg
ADDED