agentstr 0.0.1__tar.gz → 0.0.4__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {agentstr-0.0.1 → agentstr-0.0.4}/PKG-INFO +1 -1
- {agentstr-0.0.1 → agentstr-0.0.4}/agentstr/agentstr.egg-info/PKG-INFO +1 -1
- {agentstr-0.0.1 → agentstr-0.0.4}/pyproject.toml +2 -4
- {agentstr-0.0.1 → agentstr-0.0.4}/setup.py +3 -5
- {agentstr-0.0.1 → agentstr-0.0.4}/LICENSE +0 -0
- {agentstr-0.0.1 → agentstr-0.0.4}/README.md +0 -0
- {agentstr-0.0.1 → agentstr-0.0.4}/agentstr/agentstr.egg-info/SOURCES.txt +0 -0
- {agentstr-0.0.1 → agentstr-0.0.4}/agentstr/agentstr.egg-info/dependency_links.txt +0 -0
- {agentstr-0.0.1 → agentstr-0.0.4}/agentstr/agentstr.egg-info/top_level.txt +0 -0
- {agentstr-0.0.1 → agentstr-0.0.4}/setup.cfg +0 -0
- {agentstr-0.0.1 → agentstr-0.0.4}/tests/test_core.py +0 -0
@@ -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.
|
7
|
+
version = "0.0.4"
|
8
8
|
description = "A library for collaborative AI agents"
|
9
9
|
requires-python = ">=3.6"
|
10
10
|
readme = "README.md"
|
@@ -18,9 +18,7 @@ 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"
|
@@ -2,16 +2,14 @@ from setuptools import setup, find_packages
|
|
2
2
|
|
3
3
|
setup(
|
4
4
|
name="agentstr",
|
5
|
-
version="0.0.
|
5
|
+
version="0.0.4",
|
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",
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|