Skip to content

Commit

Permalink
Merge pull request #39 from blackary/add-publish
Browse files Browse the repository at this point in the history
Add publish yml
  • Loading branch information
tvst authored Sep 7, 2023
2 parents ad6215e + 69b4ba3 commit 4368424
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 3 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Upload Python Package

on:
release:
types: [created]

jobs:
pypi-publish:
name: Publish release to PyPI
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/st-annotated-text
permissions:
id-token: write

steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel
- name: Build package
run: |
python setup.py sdist bdist_wheel
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import setuptools

with open("README.md", "r", encoding='utf8') as fh:
with open("README.md", "r", encoding="utf8") as fh:
long_description = fh.read()

setuptools.setup(
name="st-annotated-text",
version="4.0.0",
version="4.0.1",
author="Thiago Teixeira",
author_email="[email protected]",
description="A simple component to display annotated text in Streamlit apps.",
Expand All @@ -20,5 +20,5 @@
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires='>=3.5',
python_requires=">=3.5",
)

0 comments on commit 4368424

Please sign in to comment.