agentstr 0.0.1__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.1
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.1
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.1"
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"
@@ -18,15 +18,13 @@ classifiers = [
18
18
  "License :: OSI Approved :: MIT License",
19
19
  "Operating System :: OS Independent"
20
20
  ]
21
- dependencies = [
22
- # List dependencies here, e.g., "numpy >= 1.21"
23
- ]
21
+ dependencies = []
24
22
 
25
23
  [project.urls]
26
24
  Homepage = "https://github.com/synvya/agentstr"
27
25
  Documentation = "https://github.com/synvya/agentstr#readme"
28
26
  BugTracker = "https://github.com/synvya/agentstr/issues"
29
27
 
30
- [tool.setuptools.packages.find]
31
- where = ["agentstr"]
32
- include = ["agentstr*"]
28
+ [tool.setuptools]
29
+ packages = ["agentstr"]
30
+ include-package-data = true
@@ -2,16 +2,14 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="agentstr",
5
- version="0.0.1",
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(),
9
9
  long_description_content_type="text/markdown",
10
10
  url="https://github.com/synvya/agentstr",
11
- packages=find_packages(),
12
- install_requires=[
13
- # List your dependencies here
14
- ],
11
+ packages=find_packages(where="."),
12
+ install_requires=[],
15
13
  classifiers=[
16
14
  "Programming Language :: Python :: 3",
17
15
  "License :: OSI Approved :: MIT License",
@@ -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