agentstr 0.0.1__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- agentstr-0.0.1/LICENSE +21 -0
- agentstr-0.0.1/PKG-INFO +21 -0
- agentstr-0.0.1/README.md +2 -0
- agentstr-0.0.1/agentstr/agentstr.egg-info/PKG-INFO +21 -0
- agentstr-0.0.1/agentstr/agentstr.egg-info/SOURCES.txt +9 -0
- agentstr-0.0.1/agentstr/agentstr.egg-info/dependency_links.txt +1 -0
- agentstr-0.0.1/agentstr/agentstr.egg-info/top_level.txt +1 -0
- agentstr-0.0.1/pyproject.toml +32 -0
- agentstr-0.0.1/setup.cfg +4 -0
- agentstr-0.0.1/setup.py +21 -0
- agentstr-0.0.1/tests/test_core.py +8 -0
agentstr-0.0.1/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2024 Synvya
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
agentstr-0.0.1/PKG-INFO
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: agentstr
|
3
|
+
Version: 0.0.1
|
4
|
+
Summary: A library for collaborative AI agents
|
5
|
+
Home-page: https://github.com/synvya/agentstr
|
6
|
+
Author: Alejandro Gil
|
7
|
+
Author-email: Alejandro Gil <info@synvya.com>
|
8
|
+
License: MIT
|
9
|
+
Project-URL: Homepage, https://github.com/synvya/agentstr
|
10
|
+
Project-URL: Documentation, https://github.com/synvya/agentstr#readme
|
11
|
+
Project-URL: BugTracker, https://github.com/synvya/agentstr/issues
|
12
|
+
Keywords: AI,agents,collaboration,library
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
14
|
+
Classifier: License :: OSI Approved :: MIT License
|
15
|
+
Classifier: Operating System :: OS Independent
|
16
|
+
Requires-Python: >=3.6
|
17
|
+
Description-Content-Type: text/markdown
|
18
|
+
License-File: LICENSE
|
19
|
+
|
20
|
+
# agentstr
|
21
|
+
Nostr based communication library for agents
|
agentstr-0.0.1/README.md
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: agentstr
|
3
|
+
Version: 0.0.1
|
4
|
+
Summary: A library for collaborative AI agents
|
5
|
+
Home-page: https://github.com/synvya/agentstr
|
6
|
+
Author: Alejandro Gil
|
7
|
+
Author-email: Alejandro Gil <info@synvya.com>
|
8
|
+
License: MIT
|
9
|
+
Project-URL: Homepage, https://github.com/synvya/agentstr
|
10
|
+
Project-URL: Documentation, https://github.com/synvya/agentstr#readme
|
11
|
+
Project-URL: BugTracker, https://github.com/synvya/agentstr/issues
|
12
|
+
Keywords: AI,agents,collaboration,library
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
14
|
+
Classifier: License :: OSI Approved :: MIT License
|
15
|
+
Classifier: Operating System :: OS Independent
|
16
|
+
Requires-Python: >=3.6
|
17
|
+
Description-Content-Type: text/markdown
|
18
|
+
License-File: LICENSE
|
19
|
+
|
20
|
+
# agentstr
|
21
|
+
Nostr based communication library for agents
|
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -0,0 +1,32 @@
|
|
1
|
+
[build-system]
|
2
|
+
requires = ["setuptools", "wheel"] # Tools required to build your library
|
3
|
+
build-backend = "setuptools.build_meta" # Backend used for the build process
|
4
|
+
|
5
|
+
[project]
|
6
|
+
name = "agentstr"
|
7
|
+
version = "0.0.1"
|
8
|
+
description = "A library for collaborative AI agents"
|
9
|
+
requires-python = ">=3.6"
|
10
|
+
readme = "README.md"
|
11
|
+
license = { text = "MIT" }
|
12
|
+
authors = [
|
13
|
+
{ name = "Alejandro Gil", email = "info@synvya.com" }
|
14
|
+
]
|
15
|
+
keywords = ["AI", "agents", "collaboration", "library"]
|
16
|
+
classifiers = [
|
17
|
+
"Programming Language :: Python :: 3",
|
18
|
+
"License :: OSI Approved :: MIT License",
|
19
|
+
"Operating System :: OS Independent"
|
20
|
+
]
|
21
|
+
dependencies = [
|
22
|
+
# List dependencies here, e.g., "numpy >= 1.21"
|
23
|
+
]
|
24
|
+
|
25
|
+
[project.urls]
|
26
|
+
Homepage = "https://github.com/synvya/agentstr"
|
27
|
+
Documentation = "https://github.com/synvya/agentstr#readme"
|
28
|
+
BugTracker = "https://github.com/synvya/agentstr/issues"
|
29
|
+
|
30
|
+
[tool.setuptools.packages.find]
|
31
|
+
where = ["agentstr"]
|
32
|
+
include = ["agentstr*"]
|
agentstr-0.0.1/setup.cfg
ADDED
agentstr-0.0.1/setup.py
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
from setuptools import setup, find_packages
|
2
|
+
|
3
|
+
setup(
|
4
|
+
name="agentstr",
|
5
|
+
version="0.0.1",
|
6
|
+
author="Alejandro Gil",
|
7
|
+
description="A library for collaborative AI agents",
|
8
|
+
long_description=open("README.md").read(),
|
9
|
+
long_description_content_type="text/markdown",
|
10
|
+
url="https://github.com/synvya/agentstr",
|
11
|
+
packages=find_packages(),
|
12
|
+
install_requires=[
|
13
|
+
# List your dependencies here
|
14
|
+
],
|
15
|
+
classifiers=[
|
16
|
+
"Programming Language :: Python :: 3",
|
17
|
+
"License :: OSI Approved :: MIT License",
|
18
|
+
"Operating System :: OS Independent",
|
19
|
+
],
|
20
|
+
python_requires=">=3.6",
|
21
|
+
)
|