pso2keras pypi 패키지 생성
iris xor 검증 자료 수정
This commit is contained in:
jung-geun
2023-07-12 19:31:54 +09:00
parent 7d22ededc7
commit 5494df2bc3
25 changed files with 1718 additions and 60 deletions

27
.github/workflows/pypi.yml vendored Normal file
View File

@@ -0,0 +1,27 @@
name: Python Package Index publish
on: [push]
jobs:
build-linux:
runs-on: ubuntu-22.04
strategy:
max-parallel: 5
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*