From 2f0d0d5adc3d66ccb1b1701b0efd0902de617ade Mon Sep 17 00:00:00 2001 From: James B Date: Wed, 13 Nov 2024 16:14:02 +0000 Subject: [PATCH 1/2] setup.py: Add blank long_description and long_description_content_type To avoid any PyPi errors --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 89fd151..27fe84c 100644 --- a/setup.py +++ b/setup.py @@ -51,6 +51,8 @@ def run(self): url="https://github.com/OpenDataServices/flatten-tool", license="MIT", description="Tools for generating CSV and other flat versions of the structured data", + long_description="", + long_description_content_type="text/plain", install_requires=install_requires, extras_require={"HTTP": ["requests"], "geo": ["shapely", "geojson"]}, cmdclass={ From 1cad94d48bd10ca4d3c252e6987089d9d3665799 Mon Sep 17 00:00:00 2001 From: James B Date: Wed, 13 Nov 2024 16:15:37 +0000 Subject: [PATCH 2/2] pypi: Automatic release --- .github/workflows/pypi.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/pypi.yml diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml new file mode 100644 index 0000000..9915e16 --- /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/flattentool + 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