robot-resources 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.
- robot_resources-0.0.1/PKG-INFO +29 -0
- robot_resources-0.0.1/README.md +11 -0
- robot_resources-0.0.1/pyproject.toml +27 -0
- robot_resources-0.0.1/setup.cfg +4 -0
- robot_resources-0.0.1/src/robot_resources/__init__.py +3 -0
- robot_resources-0.0.1/src/robot_resources.egg-info/PKG-INFO +29 -0
- robot_resources-0.0.1/src/robot_resources.egg-info/SOURCES.txt +7 -0
- robot_resources-0.0.1/src/robot_resources.egg-info/dependency_links.txt +1 -0
- robot_resources-0.0.1/src/robot_resources.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: robot-resources
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: AI agent runtime infrastructure - placeholder package
|
|
5
|
+
Author-email: Robot Resources Team <manuelsobrino6@gmail.com>
|
|
6
|
+
Project-URL: Homepage, https://github.com/robot-resources
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Classifier: Intended Audience :: Developers
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Requires-Python: >=3.8
|
|
17
|
+
Description-Content-Type: text/markdown
|
|
18
|
+
|
|
19
|
+
# Robot Resources
|
|
20
|
+
|
|
21
|
+
AI agent runtime infrastructure.
|
|
22
|
+
|
|
23
|
+
## Coming Soon
|
|
24
|
+
|
|
25
|
+
This package is under active development. Stay tuned for updates.
|
|
26
|
+
|
|
27
|
+
## Contact
|
|
28
|
+
|
|
29
|
+
For inquiries, reach out to the Robot Resources Team.
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "robot-resources"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
authors = [
|
|
9
|
+
{ name = "Robot Resources Team", email = "manuelsobrino6@gmail.com" }
|
|
10
|
+
]
|
|
11
|
+
description = "AI agent runtime infrastructure - placeholder package"
|
|
12
|
+
readme = "README.md"
|
|
13
|
+
requires-python = ">=3.8"
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"License :: OSI Approved :: MIT License",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
"Programming Language :: Python :: 3.8",
|
|
20
|
+
"Programming Language :: Python :: 3.9",
|
|
21
|
+
"Programming Language :: Python :: 3.10",
|
|
22
|
+
"Programming Language :: Python :: 3.11",
|
|
23
|
+
"Programming Language :: Python :: 3.12",
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
[project.urls]
|
|
27
|
+
Homepage = "https://github.com/robot-resources"
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: robot-resources
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: AI agent runtime infrastructure - placeholder package
|
|
5
|
+
Author-email: Robot Resources Team <manuelsobrino6@gmail.com>
|
|
6
|
+
Project-URL: Homepage, https://github.com/robot-resources
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Classifier: Intended Audience :: Developers
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Requires-Python: >=3.8
|
|
17
|
+
Description-Content-Type: text/markdown
|
|
18
|
+
|
|
19
|
+
# Robot Resources
|
|
20
|
+
|
|
21
|
+
AI agent runtime infrastructure.
|
|
22
|
+
|
|
23
|
+
## Coming Soon
|
|
24
|
+
|
|
25
|
+
This package is under active development. Stay tuned for updates.
|
|
26
|
+
|
|
27
|
+
## Contact
|
|
28
|
+
|
|
29
|
+
For inquiries, reach out to the Robot Resources Team.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
robot_resources
|