Skip to content

Commit

Permalink
try using github action to automate release package uploading (#3113)
Browse files Browse the repository at this point in the history
  • Loading branch information
jzhang533 authored Mar 25, 2024
1 parent 8a53cdd commit 9efbbb8
Show file tree
Hide file tree
Showing 5 changed files with 79 additions and 41 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# This workflow will upload a Python Package using Twine when a release is created
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

name: Upload Python Package

on:
release:
types: [published]

permissions:
contents: read

jobs:
deploy:

runs-on: ubuntu-latest

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 build
- name: Build package
run: python -m build
- name: Publish package
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
3 changes: 1 addition & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
include LICENSE.txt
include LICENSE
include README.md
include docs/en/whl_en.md
recursive-include deploy/python *.py
recursive-include deploy/utils *.py
recursive-include ppcls/arch *.py
Expand Down
37 changes: 37 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"

[project]
name = "paddleclas"
description = "A treasure chest for visual recognition powered by PaddlePaddle."

keywords=[
'image-classification', 'image-recognition', 'pretrained-models',
'knowledge-distillation', 'product-recognition', 'autoaugment',
'cutmix', 'randaugment', 'gridmask', 'deit', 'repvgg',
'swin-transformer', 'image-retrieval-system'
]
classifiers=[
'Development Status :: 5 - Production/Stable',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
]

readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.8"

dynamic = ["version", "dependencies"]

[project.scripts]
paddleclas = "paddleclas.paddleclas:main"

[tool.setuptools.dynamic]
version = {file = "version.txt"}
dependencies = {file = "requirements.txt"}


40 changes: 1 addition & 39 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,51 +12,13 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from io import open
from setuptools import setup

with open('requirements.txt', encoding="utf-8-sig") as f:
requirements = f.readlines()


def readme():
with open(
'docs/en/inference_deployment/whl_deploy_en.md',
encoding="utf-8-sig") as f:
README = f.read()
return README


setup(
name='paddleclas',
packages=['paddleclas'],
package_dir={'paddleclas': ''},
include_package_data=True,
entry_points={
"console_scripts": ["paddleclas=paddleclas.paddleclas:main"]
},
version='0.0.0',
install_requires=requirements,
license='Apache License 2.0',
description='A treasure chest for visual recognition powered by PaddlePaddle.',
long_description=readme(),
long_description_content_type='text/markdown',
url='https://github.com/PaddlePaddle/PaddleClas',
download_url='https://github.com/PaddlePaddle/PaddleClas.git',
keywords=[
'image-classification', 'image-recognition', 'pretrained-models',
'knowledge-distillation', 'product-recognition', 'autoaugment',
'cutmix', 'randaugment', 'gridmask', 'deit', 'repvgg',
'swin-transformer', 'image-retrieval-system'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
], )
)
1 change: 1 addition & 0 deletions version.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2.5.2

0 comments on commit 9efbbb8

Please sign in to comment.