higi 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.
- higi-0.0.1/PKG-INFO +10 -0
- higi-0.0.1/README.md +0 -0
- higi-0.0.1/higi/__init__.py +0 -0
- higi-0.0.1/pyproject.toml +27 -0
higi-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: higi
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: The universal runtime resilience and self-healing engine for modern Python applications.
|
|
5
|
+
Project-URL: Homepage, https://github.com/sai8555/higi
|
|
6
|
+
Author-email: JANAPAREDDY GIRI SAI DURGA <girisaidurgajanapareddy@gmail.com>
|
|
7
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
+
Classifier: Operating System :: OS Independent
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Requires-Python: >=3.8
|
higi-0.0.1/README.md
ADDED
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "higi"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "The universal runtime resilience and self-healing engine for modern Python applications."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
authors = [
|
|
12
|
+
{ name = "JANAPAREDDY GIRI SAI DURGA", email = "girisaidurgajanapareddy@gmail.com" }
|
|
13
|
+
]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
"License :: OSI Approved :: MIT License",
|
|
17
|
+
"Operating System :: OS Independent",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[project.urls]
|
|
21
|
+
Homepage = "https://github.com/sai8555/higi"
|
|
22
|
+
|
|
23
|
+
[tool.hatch.build.targets.sdist]
|
|
24
|
+
exclude = ["venv"]
|
|
25
|
+
|
|
26
|
+
[tool.hatch.build.targets.wheel]
|
|
27
|
+
exclude = ["venv"]
|