Skip to content

Commit

Permalink
feat(build): upload pip package (fixes #29)
Browse files Browse the repository at this point in the history
  • Loading branch information
ssube committed Jan 10, 2023
1 parent de86df9 commit 8452b73
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,9 @@ package-api-twine:
- tags
script:
- cd api
- echo make package
- python -m build
- twine check dist/*
- twine upload dist/*

package-gui-npm:
extends:
Expand Down
4 changes: 2 additions & 2 deletions api/setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import setuptools

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

setuptools.setup(
name="onnx_web",
name="onnx-web",
version="0.2.1",
author="ssube",
author_email="seansube@gmail.com",
Expand Down

0 comments on commit 8452b73

Please sign in to comment.