Skip to content

Commit

Permalink
Updated pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
VRSEN committed Jan 19, 2024
1 parent d096a67 commit 9b36180
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
26 changes: 25 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "[email protected]" }]
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]
[project.scripts]
agency-swarm = "agency_swarm.cli:main"

[tool.setuptools_scm]
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
version='0.1.0',
author='VRSEN',
author_email='[email protected]',
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',
Expand Down

0 comments on commit 9b36180

Please sign in to comment.