From 5b255d9a6aef06ebff4a7c6e78a3562fa33c5f59 Mon Sep 17 00:00:00 2001 From: Jorn Bruggeman Date: Wed, 15 May 2024 09:47:37 +0100 Subject: [PATCH] add github action workflow for pypi publishing --- .github/dependabot.yml | 10 +++++++ .github/workflows/publish_to_pypi.yml | 38 +++++++++++++++++++++++++++ pyproject.toml | 2 +- 3 files changed, 49 insertions(+), 1 deletion(-) create mode 100644 .github/dependabot.yml create mode 100644 .github/workflows/publish_to_pypi.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..dfd0e30 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,10 @@ +# Set update schedule for GitHub Actions + +version: 2 +updates: + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + # Check for updates to GitHub Actions every week + interval: "weekly" diff --git a/.github/workflows/publish_to_pypi.yml b/.github/workflows/publish_to_pypi.yml new file mode 100644 index 0000000..7ebfff8 --- /dev/null +++ b/.github/workflows/publish_to_pypi.yml @@ -0,0 +1,38 @@ +name: Publish Python to PyPI + +on: push + +jobs: + build: + name: Build distribution + runs-on: ubuntu-latest + steps: + - name: Clone repository + uses: actions/checkout@v4 + - name: Set up Python + uses: actions/setup-python@v5 + - name: Install build + run: pip install build + - name: Build a binary wheel and a source tarball + run: python -m build + - name: Store the distribution packages + uses: actions/upload-artifact@v3 + with: + name: python-package-distributions + path: dist/ + publish-to-pypi: + name: Publish distribution to PyPI + runs-on: ubuntu-latest + environment: + name: pypi + url: https://pypi.org/p/${{ github.event.repository.name }} + permissions: + id-token: write + steps: + - name: Download all the dists + uses: actions/download-artifact@v3 + with: + name: python-package-distributions + path: dist/ + - name: Publish package to PyPI + uses: pypa/gh-action-pypi-publish@release/v1 diff --git a/pyproject.toml b/pyproject.toml index 3f8c32f..a5af55c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,13 +5,13 @@ build-backend = "hatchling.build" [project] name = "pyncview" version = "0.99.38" +readme = "README.md" dependencies = [ "xmlplot>=0.9.28", ] authors = [ {name = "Jorn Bruggeman", email = "jorn@bolding-bruggeman.com"} ] -license = {file = "LICENSE"} description = "NetCDF viewer written in Python" requires-python = ">=3.8" classifiers = [