Skip to content

PyPi stuff again and update README #3

PyPi stuff again and update README

PyPi stuff again and update README #3

Workflow file for this run

name: Publish to PyPI
on:
push:
tags:
- 'V*.*.*'
jobs:
build-and-publish:
runs-on: ubuntu-22.04
permissions:
contents: read
id-token: write # needed for trusted publishing
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install build tools
run: |
python -m pip install --upgrade pip
pip install build
- name: Build package
run: python -m build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1