snowglobe-sdk 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.
- snowglobe_sdk-0.0.1/PKG-INFO +20 -0
- snowglobe_sdk-0.0.1/pyproject.toml +3 -0
- snowglobe_sdk-0.0.1/sdk/__init__.py +0 -0
- snowglobe_sdk-0.0.1/setup.cfg +4 -0
- snowglobe_sdk-0.0.1/setup.py +17 -0
- snowglobe_sdk-0.0.1/snowglobe_sdk.egg-info/PKG-INFO +20 -0
- snowglobe_sdk-0.0.1/snowglobe_sdk.egg-info/SOURCES.txt +7 -0
- snowglobe_sdk-0.0.1/snowglobe_sdk.egg-info/dependency_links.txt +1 -0
- snowglobe_sdk-0.0.1/snowglobe_sdk.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: snowglobe-sdk
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Simulation engine for AI Agents.
|
|
5
|
+
Home-page: https://snowglobe.so
|
|
6
|
+
Author: Snowglobe
|
|
7
|
+
Author-email: hi@snowglobe.so
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Requires-Python: >=3.7
|
|
10
|
+
Description-Content-Type: text/plain
|
|
11
|
+
Dynamic: author
|
|
12
|
+
Dynamic: author-email
|
|
13
|
+
Dynamic: classifier
|
|
14
|
+
Dynamic: description
|
|
15
|
+
Dynamic: description-content-type
|
|
16
|
+
Dynamic: home-page
|
|
17
|
+
Dynamic: requires-python
|
|
18
|
+
Dynamic: summary
|
|
19
|
+
|
|
20
|
+
Simulation engine for AI Agents.
|
|
File without changes
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name="snowglobe-sdk",
|
|
5
|
+
version="0.0.1",
|
|
6
|
+
author="Snowglobe",
|
|
7
|
+
author_email="hi@snowglobe.so",
|
|
8
|
+
description="Simulation engine for AI Agents.",
|
|
9
|
+
long_description="Simulation engine for AI Agents.",
|
|
10
|
+
long_description_content_type="text/plain",
|
|
11
|
+
url="https://snowglobe.so",
|
|
12
|
+
packages=find_packages(),
|
|
13
|
+
classifiers=[
|
|
14
|
+
"Programming Language :: Python :: 3"
|
|
15
|
+
],
|
|
16
|
+
python_requires=">=3.7",
|
|
17
|
+
)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: snowglobe-sdk
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Simulation engine for AI Agents.
|
|
5
|
+
Home-page: https://snowglobe.so
|
|
6
|
+
Author: Snowglobe
|
|
7
|
+
Author-email: hi@snowglobe.so
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Requires-Python: >=3.7
|
|
10
|
+
Description-Content-Type: text/plain
|
|
11
|
+
Dynamic: author
|
|
12
|
+
Dynamic: author-email
|
|
13
|
+
Dynamic: classifier
|
|
14
|
+
Dynamic: description
|
|
15
|
+
Dynamic: description-content-type
|
|
16
|
+
Dynamic: home-page
|
|
17
|
+
Dynamic: requires-python
|
|
18
|
+
Dynamic: summary
|
|
19
|
+
|
|
20
|
+
Simulation engine for AI Agents.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
sdk
|