From 9b36180fbbba8e8ada8b0a9199b0a98983d4510b Mon Sep 17 00:00:00 2001 From: Arsenii Shatokhin Date: Fri, 19 Jan 2024 08:12:07 +0400 Subject: [PATCH] Updated pyproject.toml --- pyproject.toml | 26 +++++++++++++++++++++++++- setup.py | 2 +- 2 files changed, 26 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 0c5a4336..5b587e86 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,6 +3,30 @@ requires = ["setuptools>=61.0", "setuptools_scm>=8"] build-backend = "setuptools.build_meta" [project] +name = "agency-swarm" dynamic = ["version"] +authors = [{ name = "VRSEN", email = "arseny9795@gmail.com" }] +description = "An opensource agent orchestration framework built on top of the latest OpenAI Assistants API." +readme = "README.md" +license = { file = "LICENSE" } +classifiers = [ + "Intended Audience :: Developers", + "Topic :: Software Development :: Build Tools", + "License :: OSI Approved :: MIT License", +] +dependencies = [ + "openai==1.5.0", + "instructor==0.4.5", + "deepdiff==6.7.1", + "termcolor==2.3.0", + "python-dotenv==1.0.0", + "rich==13.7.0", + "jsonref==1.1.0" +] +python-requirements = ">=3.7" +urls = { homepage = "https://github.com/VRSEN/agency-swarm" } -[tool.setuptools_scm] \ No newline at end of file +[project.scripts] +agency-swarm = "agency_swarm.cli:main" + +[tool.setuptools_scm] diff --git a/setup.py b/setup.py index 7a309034..502bb60b 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ version='0.1.0', author='VRSEN', author_email='arseny9795@gmail.com', - description='An opensource agent orchestration frameworks built on top of the latest OpenAI Assistants API.', + description='An opensource agent orchestration framework built on top of the latest OpenAI Assistants API.', long_description=open('README.md').read(), long_description_content_type='text/markdown', url='https://github.com/VRSEN/agency-swarm',