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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: agentstr
3
- Version: 0.0.1
3
+ Version: 0.0.4
4
4
  Summary: A library for collaborative AI agents
5
5
  Home-page: https://github.com/synvya/agentstr
6
6
  Author: Alejandro Gil
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: agentstr
3
- Version: 0.0.1
3
+ Version: 0.0.4
4
4
  Summary: A library for collaborative AI agents
5
5
  Home-page: https://github.com/synvya/agentstr
6
6
  Author: Alejandro Gil
@@ -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.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.1",
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