agentstr 0.0.4__tar.gz → 0.0.5__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: agentstr
3
- Version: 0.0.4
3
+ Version: 0.0.5
4
4
  Summary: A library for collaborative AI agents
5
5
  Home-page: https://github.com/synvya/agentstr
6
6
  Author: Alejandro Gil
@@ -0,0 +1 @@
1
+ __version__ = "0.0.1"
@@ -0,0 +1,3 @@
1
+ def add(a, b):
2
+ """Add two numbers."""
3
+ return a + b
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: agentstr
3
- Version: 0.0.4
3
+ Version: 0.0.5
4
4
  Summary: A library for collaborative AI agents
5
5
  Home-page: https://github.com/synvya/agentstr
6
6
  Author: Alejandro Gil
@@ -0,0 +1,11 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ setup.py
5
+ agentstr/__init__.py
6
+ agentstr/core.py
7
+ agentstr.egg-info/PKG-INFO
8
+ agentstr.egg-info/SOURCES.txt
9
+ agentstr.egg-info/dependency_links.txt
10
+ agentstr.egg-info/top_level.txt
11
+ tests/test_core.py
@@ -0,0 +1 @@
1
+ agentstr
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" # Backend used for the build process
4
4
 
5
5
  [project]
6
6
  name = "agentstr"
7
- version = "0.0.4"
7
+ version = "0.0.5"
8
8
  description = "A library for collaborative AI agents"
9
9
  requires-python = ">=3.6"
10
10
  readme = "README.md"
@@ -25,6 +25,6 @@ Homepage = "https://github.com/synvya/agentstr"
25
25
  Documentation = "https://github.com/synvya/agentstr#readme"
26
26
  BugTracker = "https://github.com/synvya/agentstr/issues"
27
27
 
28
- [tool.setuptools.packages.find]
29
- where = ["agentstr"]
30
- include = ["agentstr*"]
28
+ [tool.setuptools]
29
+ packages = ["agentstr"]
30
+ include-package-data = true
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="agentstr",
5
- version="0.0.4",
5
+ version="0.0.5",
6
6
  author="Alejandro Gil",
7
7
  description="A library for collaborative AI agents",
8
8
  long_description=open("README.md").read(),
@@ -1,9 +0,0 @@
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
File without changes
File without changes
File without changes
File without changes