openswarm-os 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.
- openswarm_os-0.1.0/PKG-INFO +24 -0
- openswarm_os-0.1.0/README.md +0 -0
- openswarm_os-0.1.0/setup.cfg +4 -0
- openswarm_os-0.1.0/setup.py +20 -0
- openswarm_os-0.1.0/src/openswarm/__init__.py +1 -0
- openswarm_os-0.1.0/src/openswarm_os.egg-info/PKG-INFO +24 -0
- openswarm_os-0.1.0/src/openswarm_os.egg-info/SOURCES.txt +7 -0
- openswarm_os-0.1.0/src/openswarm_os.egg-info/dependency_links.txt +1 -0
- openswarm_os-0.1.0/src/openswarm_os.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: openswarm-os
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: The Unkillable, Local-First AI Agent Operating System.
|
|
5
|
+
Home-page: https://github.com/openswarm-os/openswarm
|
|
6
|
+
Author: Ted Ward
|
|
7
|
+
Author-email: ted@tedward.net
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.9
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
Dynamic: author
|
|
14
|
+
Dynamic: author-email
|
|
15
|
+
Dynamic: classifier
|
|
16
|
+
Dynamic: description
|
|
17
|
+
Dynamic: description-content-type
|
|
18
|
+
Dynamic: home-page
|
|
19
|
+
Dynamic: requires-python
|
|
20
|
+
Dynamic: summary
|
|
21
|
+
|
|
22
|
+
# OpenSwarm
|
|
23
|
+
|
|
24
|
+
Authentication reserved. Full release coming soon.
|
|
File without changes
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name="openswarm-os",
|
|
5
|
+
version="0.1.0",
|
|
6
|
+
author="Ted Ward",
|
|
7
|
+
author_email="ted@tedward.net",
|
|
8
|
+
description="The Unkillable, Local-First AI Agent Operating System.",
|
|
9
|
+
long_description="# OpenSwarm\n\nAuthentication reserved. Full release coming soon.",
|
|
10
|
+
long_description_content_type="text/markdown",
|
|
11
|
+
url="https://github.com/openswarm-os/openswarm",
|
|
12
|
+
packages=find_packages(where="src"),
|
|
13
|
+
package_dir={"": "src"},
|
|
14
|
+
classifiers=[
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
"License :: OSI Approved :: MIT License",
|
|
17
|
+
"Operating System :: OS Independent",
|
|
18
|
+
],
|
|
19
|
+
python_requires=">=3.9",
|
|
20
|
+
)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.1"
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: openswarm-os
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: The Unkillable, Local-First AI Agent Operating System.
|
|
5
|
+
Home-page: https://github.com/openswarm-os/openswarm
|
|
6
|
+
Author: Ted Ward
|
|
7
|
+
Author-email: ted@tedward.net
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.9
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
Dynamic: author
|
|
14
|
+
Dynamic: author-email
|
|
15
|
+
Dynamic: classifier
|
|
16
|
+
Dynamic: description
|
|
17
|
+
Dynamic: description-content-type
|
|
18
|
+
Dynamic: home-page
|
|
19
|
+
Dynamic: requires-python
|
|
20
|
+
Dynamic: summary
|
|
21
|
+
|
|
22
|
+
# OpenSwarm
|
|
23
|
+
|
|
24
|
+
Authentication reserved. Full release coming soon.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
openswarm
|