migrate to pyproject.toml

This commit is contained in:
Branch Vincent 2024-08-12 19:42:32 -07:00
parent d4ae735d43
commit aa6a538992
No known key found for this signature in database
5 changed files with 61 additions and 76 deletions

View file

@ -21,12 +21,12 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine importlib-metadata==7.2.1
pip install build setuptools wheel twine importlib-metadata==7.2.1
- name: Build and publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: |
python setup.py sdist bdist_wheel
python -m build
twine upload dist/*