robovai-cli 0.1.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.
- robovai_cli-0.1.0/PKG-INFO +25 -0
- robovai_cli-0.1.0/robovai_cli.egg-info/PKG-INFO +25 -0
- robovai_cli-0.1.0/robovai_cli.egg-info/SOURCES.txt +20 -0
- robovai_cli-0.1.0/robovai_cli.egg-info/dependency_links.txt +1 -0
- robovai_cli-0.1.0/robovai_cli.egg-info/entry_points.txt +2 -0
- robovai_cli-0.1.0/robovai_cli.egg-info/requires.txt +3 -0
- robovai_cli-0.1.0/robovai_cli.egg-info/top_level.txt +2 -0
- robovai_cli-0.1.0/robovai_cli.py +1522 -0
- robovai_cli-0.1.0/robovai_cli_core/__init__.py +22 -0
- robovai_cli-0.1.0/robovai_cli_core/asset_materializer.py +101 -0
- robovai_cli-0.1.0/robovai_cli_core/models.py +25 -0
- robovai_cli-0.1.0/robovai_cli_core/oss_registry.py +44 -0
- robovai_cli-0.1.0/robovai_cli_core/persona_catalog.py +59 -0
- robovai_cli-0.1.0/robovai_cli_core/workflow_adapter.py +67 -0
- robovai_cli-0.1.0/setup.cfg +4 -0
- robovai_cli-0.1.0/setup.py +32 -0
- robovai_cli-0.1.0/tests/test_admin.py +90 -0
- robovai_cli-0.1.0/tests/test_auth.py +134 -0
- robovai_cli-0.1.0/tests/test_health_pages.py +128 -0
- robovai_cli-0.1.0/tests/test_payments.py +50 -0
- robovai_cli-0.1.0/tests/test_webhook_agent.py +125 -0
- robovai_cli-0.1.0/tests/test_webhooks.py +267 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: robovai-cli
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: RoboVAI Enterprise AI Platform - Command Line Interface
|
|
5
|
+
Home-page: https://robovai.tech
|
|
6
|
+
Author: RoboVAI Solutions, Inc.
|
|
7
|
+
Author-email: dev@robovai.tech
|
|
8
|
+
Classifier: Development Status :: 3 - Alpha
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
15
|
+
Requires-Python: >=3.10
|
|
16
|
+
Requires-Dist: typer[all]>=0.9.0
|
|
17
|
+
Requires-Dist: httpx>=0.25.0
|
|
18
|
+
Requires-Dist: python-dotenv>=1.0.0
|
|
19
|
+
Dynamic: author
|
|
20
|
+
Dynamic: author-email
|
|
21
|
+
Dynamic: classifier
|
|
22
|
+
Dynamic: home-page
|
|
23
|
+
Dynamic: requires-dist
|
|
24
|
+
Dynamic: requires-python
|
|
25
|
+
Dynamic: summary
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: robovai-cli
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: RoboVAI Enterprise AI Platform - Command Line Interface
|
|
5
|
+
Home-page: https://robovai.tech
|
|
6
|
+
Author: RoboVAI Solutions, Inc.
|
|
7
|
+
Author-email: dev@robovai.tech
|
|
8
|
+
Classifier: Development Status :: 3 - Alpha
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
15
|
+
Requires-Python: >=3.10
|
|
16
|
+
Requires-Dist: typer[all]>=0.9.0
|
|
17
|
+
Requires-Dist: httpx>=0.25.0
|
|
18
|
+
Requires-Dist: python-dotenv>=1.0.0
|
|
19
|
+
Dynamic: author
|
|
20
|
+
Dynamic: author-email
|
|
21
|
+
Dynamic: classifier
|
|
22
|
+
Dynamic: home-page
|
|
23
|
+
Dynamic: requires-dist
|
|
24
|
+
Dynamic: requires-python
|
|
25
|
+
Dynamic: summary
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
robovai_cli.py
|
|
2
|
+
setup.py
|
|
3
|
+
robovai_cli.egg-info/PKG-INFO
|
|
4
|
+
robovai_cli.egg-info/SOURCES.txt
|
|
5
|
+
robovai_cli.egg-info/dependency_links.txt
|
|
6
|
+
robovai_cli.egg-info/entry_points.txt
|
|
7
|
+
robovai_cli.egg-info/requires.txt
|
|
8
|
+
robovai_cli.egg-info/top_level.txt
|
|
9
|
+
robovai_cli_core/__init__.py
|
|
10
|
+
robovai_cli_core/asset_materializer.py
|
|
11
|
+
robovai_cli_core/models.py
|
|
12
|
+
robovai_cli_core/oss_registry.py
|
|
13
|
+
robovai_cli_core/persona_catalog.py
|
|
14
|
+
robovai_cli_core/workflow_adapter.py
|
|
15
|
+
tests/test_admin.py
|
|
16
|
+
tests/test_auth.py
|
|
17
|
+
tests/test_health_pages.py
|
|
18
|
+
tests/test_payments.py
|
|
19
|
+
tests/test_webhook_agent.py
|
|
20
|
+
tests/test_webhooks.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|