implementing poetry

This commit is contained in:
Florian Kaiser
2024-03-02 23:42:13 +01:00
parent fc60c0fda0
commit 519e667fe9
14 changed files with 417 additions and 112 deletions

View File

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