ailoos 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.
- ailoos-0.0.1/PKG-INFO +19 -0
- ailoos-0.0.1/README.md +6 -0
- ailoos-0.0.1/pyproject.toml +26 -0
- ailoos-0.0.1/setup.cfg +4 -0
- ailoos-0.0.1/src/ailoos/__init__.py +1 -0
- ailoos-0.0.1/src/ailoos.egg-info/PKG-INFO +19 -0
- ailoos-0.0.1/src/ailoos.egg-info/SOURCES.txt +7 -0
- ailoos-0.0.1/src/ailoos.egg-info/dependency_links.txt +1 -0
- ailoos-0.0.1/src/ailoos.egg-info/top_level.txt +1 -0
ailoos-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ailoos
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Placeholder reserving the 'ailoos' name on PyPI. Real package coming soon.
|
|
5
|
+
Author-email: Empoorio <dev@empoorio.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/empoorio/ailoos
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Requires-Python: >=3.9
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# ailoos
|
|
15
|
+
|
|
16
|
+
Hola.
|
|
17
|
+
|
|
18
|
+
Este es un placeholder para reservar el nombre `ailoos` en PyPI mientras
|
|
19
|
+
se prepara la publicación real del SDK de Ailoos (nodos de IA federada).
|
ailoos-0.0.1/README.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "ailoos"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
authors = [
|
|
9
|
+
{ name="Empoorio", email="dev@empoorio.com" },
|
|
10
|
+
]
|
|
11
|
+
description = "Placeholder reserving the 'ailoos' name on PyPI. Real package coming soon."
|
|
12
|
+
readme = "README.md"
|
|
13
|
+
requires-python = ">=3.9"
|
|
14
|
+
license = "MIT"
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Development Status :: 1 - Planning",
|
|
17
|
+
"Intended Audience :: Developers",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[project.urls]
|
|
22
|
+
"Homepage" = "https://github.com/empoorio/ailoos"
|
|
23
|
+
|
|
24
|
+
[tool.setuptools.packages.find]
|
|
25
|
+
where = ["src"]
|
|
26
|
+
include = ["ailoos*"]
|
ailoos-0.0.1/setup.cfg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Hola. Placeholder que reserva el nombre 'ailoos' en PyPI."""
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ailoos
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Placeholder reserving the 'ailoos' name on PyPI. Real package coming soon.
|
|
5
|
+
Author-email: Empoorio <dev@empoorio.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/empoorio/ailoos
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Requires-Python: >=3.9
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# ailoos
|
|
15
|
+
|
|
16
|
+
Hola.
|
|
17
|
+
|
|
18
|
+
Este es un placeholder para reservar el nombre `ailoos` en PyPI mientras
|
|
19
|
+
se prepara la publicación real del SDK de Ailoos (nodos de IA federada).
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ailoos
|