Skip to content

Commit

Permalink
update GA
Browse files Browse the repository at this point in the history
  • Loading branch information
cornelcroi committed Aug 13, 2024
1 parent 3873987 commit 7cfae73
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 13 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/pypi-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,24 @@ jobs:
- name: Set up Python
uses: actions/setup-python@2bd53f9a4d1dd1cd21eaffcc01a7b91a8e73ea4c
with:
python-version: '3.x'
python-version: '3.12'

- name: Install build dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade build twine
- name: Check README content
run: |
echo "README.md content:"
cat README.md
- name: Build package
run: python -m build


- name: Check distribution
run: twine check dist/*

- name: Publish to PyPI
env:
TWINE_USERNAME: __token__
Expand Down
19 changes: 9 additions & 10 deletions python/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,26 +1,25 @@
[metadata]
name = multi_agent_orchestrator
version = 0.0.1
author = [
{ name="Anthony Bernabeu", email="[email protected]" },
{ name="Corneliu Croitoru", email="[email protected]"}]
description = Multi-agent orchestartor framework
author = Anthony Bernabeu, Corneliu Croitoru
author_email = [email protected], [email protected]
description = Multi-agent orchestrator framework
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/awslabs/multi-agent-orchestrator
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent

[options]
package_dir =
= src
packages = find:
install_requires =
boto3==1.34.151
anthropic==0.32.0
python_requires = >=3.12
install_requires =
boto3==1.34.151
anthropic==0.32.0

[options.packages.find]
where = src
Expand Down

0 comments on commit 7cfae73

Please sign in to comment.