Skip to content

Update setup.py

Update setup.py #1

Workflow file for this run

name: Publish to PyPI
on:
push:
branches:
- main # You can change this to the branch you want to publish from
paths:
- 'setup.py'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.8 # You can change this to the Python version required for your package
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install twine
pip install wheel
pip install --upgrade setuptools
- name: Build package
run: python setup.py sdist bdist_wheel
- name: Upload to PyPI
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: twine upload dist/*