Initial commit

This commit is contained in:
2021-12-23 17:45:21 +00:00
commit 5cf890d3ae
14 changed files with 1273 additions and 0 deletions

27
.github/workflows/release.yaml vendored Normal file
View File

@@ -0,0 +1,27 @@
---
name: Release
on:
push:
tags:
- "[0-9]+.[0-9]+.[0-9]+"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: actions/setup-python@v2
- run: pip install -r requirements-dev.txt
- name: Build Assets
run: python setup.py sdist bdist_wheel
- name: Release
uses: softprops/action-gh-release@v1
with:
name: "Version ${{ github.ref_name }}"
generate_release_notes: true
files: |
dist/*