From 89d62432f46f50a144749bcf87ccb30a620272cc Mon Sep 17 00:00:00 2001 From: sean Date: Mon, 5 Feb 2024 11:20:44 +0900 Subject: [PATCH] release githubflow add --- .github/workflows/release.yml | 31 +++++++++++++++++++++++++++++++ setup.py | 5 ++++- 2 files changed, 35 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 000000000..c435e9f20 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,31 @@ +name: Publish Python 🐍 distributions 📦 to PyPI and TestPyPI + +on: push + +jobs: + build-n-publish: + name: Build and publish Python 🐍 distributions 📦 to PyPI and TestPyPI + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: "3.x" + - name: Install pypa/build + run: >- + python3 -m + pip install + build + --user + - name: Build a source tarball + run: >- + python3 -m + build + --sdist + --outdir dist/ + - name: Publish distribution 📦 to PyPI + if: startsWith(github.ref, 'refs/tags') + uses: pypa/gh-action-pypi-publish@release/v1 + with: + password: ${{ secrets.PYPI_API_TOKEN }} \ No newline at end of file diff --git a/setup.py b/setup.py index b1e818f1d..58a28adcf 100644 --- a/setup.py +++ b/setup.py @@ -6,6 +6,7 @@ except ImportError: from distutils.core import setup, Command +from pathlib import Path import sys tests_require = [] @@ -35,11 +36,13 @@ def run(self): version = "0.30.1" +this_directory = Path(__file__).parent +long_description = (this_directory / "README.md").read_text() setup( name="mysql-replication", version=version, - url="https://github.com/noplay/python-mysql-replication", + url="https://github.com/julien-duponchelle/python-mysql-replication", author="Julien Duponchelle", author_email="julien@duponchelle.info", description=("Pure Python Implementation of MySQL replication protocol "