🎉 Initial commit

This commit is contained in:
FuQuan233 2025-02-14 17:56:24 +08:00
commit bbcd2377a1
8 changed files with 752 additions and 0 deletions

36
.github/workflows/pypi-publish.yml vendored Normal file
View file

@ -0,0 +1,36 @@
name: Publish
on:
push:
tags:
- '*'
workflow_dispatch:
jobs:
pypi-publish:
name: Upload release to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: "3.x"
- name: Install pypa/build
run: >-
python -m
pip install
build
--user
- name: Build a binary wheel and a source tarball
run: >-
python -m
build
--sdist
--wheel
--outdir dist/
.
- name: Publish distribution to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}