relai 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.
Potentially problematic release.
This version of relai might be problematic. Click here for more details.
- relai-0.0.1/PKG-INFO +13 -0
- relai-0.0.1/README.md +1 -0
- relai-0.0.1/pyproject.toml +21 -0
- relai-0.0.1/setup.cfg +4 -0
- relai-0.0.1/src/__init__.py +0 -0
- relai-0.0.1/src/relai.egg-info/PKG-INFO +13 -0
- relai-0.0.1/src/relai.egg-info/SOURCES.txt +7 -0
- relai-0.0.1/src/relai.egg-info/dependency_links.txt +1 -0
- relai-0.0.1/src/relai.egg-info/top_level.txt +1 -0
relai-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: relai
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A package for AI reliability
|
|
5
|
+
Author-email: RELAI <relai.technologies@gmail.com>
|
|
6
|
+
Project-URL: Homepage, https://relai.tech
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Requires-Python: >=3.7
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
|
|
13
|
+
# RELAI
|
relai-0.0.1/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# RELAI
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "relai"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
authors = [
|
|
9
|
+
{ name="RELAI", email="relai.technologies@gmail.com" },
|
|
10
|
+
]
|
|
11
|
+
description = "A package for AI reliability"
|
|
12
|
+
readme = "README.md"
|
|
13
|
+
requires-python = ">=3.7"
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
"Operating System :: OS Independent",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[project.urls]
|
|
21
|
+
"Homepage" = "https://relai.tech"
|
relai-0.0.1/setup.cfg
ADDED
|
File without changes
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: relai
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A package for AI reliability
|
|
5
|
+
Author-email: RELAI <relai.technologies@gmail.com>
|
|
6
|
+
Project-URL: Homepage, https://relai.tech
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Requires-Python: >=3.7
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
|
|
13
|
+
# RELAI
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__init__
|