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 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.
@@ -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,2 @@
1
+ # agentstr
2
+ Nostr based communication library for agents
@@ -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,9 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ setup.py
5
+ agentstr/agentstr.egg-info/PKG-INFO
6
+ agentstr/agentstr.egg-info/SOURCES.txt
7
+ agentstr/agentstr.egg-info/dependency_links.txt
8
+ agentstr/agentstr.egg-info/top_level.txt
9
+ tests/test_core.py
@@ -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*"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -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
+ )
@@ -0,0 +1,8 @@
1
+ import unittest
2
+ import agentstr
3
+
4
+ from agentstr.core import add
5
+
6
+ def test_add():
7
+ assert add(2, 3) == 5
8
+