1
0
Fork 0

feat(build): upload pip package (fixes #29)

This commit is contained in:
Sean Sube 2023-01-10 08:54:58 -06:00
parent de86df9ea9
commit 8452b7384c
2 changed files with 5 additions and 3 deletions

View File

@ -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:

View File

@ -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",