diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml new file mode 100644 index 0000000..e30317c --- /dev/null +++ b/.github/workflows/pypi.yml @@ -0,0 +1,32 @@ +name: Upload release to PyPI (Test & Live) +on: + push: + branches: [main] + release: + types: [published] + +jobs: + pypi-publish: + name: Upload release to PyPI (Test & Live) + runs-on: ubuntu-latest + environment: + name: pypi + url: https://pypi.org/p/libcoveweb + permissions: + id-token: write # IMPORTANT: this permission is mandatory for trusted publishing + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: '3.12' + - run: pip install --upgrade build + - run: python -m build --sdist --wheel + - name: Publish package distributions to TEST PyPI + if: github.event_name == 'push' + uses: pypa/gh-action-pypi-publish@release/v1 + with: + repository-url: https://test.pypi.org/legacy/ + skip-existing: true + - name: Publish package distributions to LIVE PyPI + if: github.event_name == 'release' + uses: pypa/gh-action-pypi-publish@release/v1 diff --git a/setup.py b/setup.py index afbb720..07e3c28 100644 --- a/setup.py +++ b/setup.py @@ -25,6 +25,8 @@ scripts=['manage.py'], url='https://github.com/OpenDataServices/lib-cove-web', description='', + long_description="", + long_description_content_type="text/plain", classifiers=[ 'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)', ],