mirror of
https://github.com/LukeHagar/comfy-deploy-python.git
synced 2025-12-06 20:37:48 +00:00
10 lines
215 B
Bash
Executable File
10 lines
215 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
export TWINE_USERNAME=__token__
|
|
export TWINE_PASSWORD=${PYPI_TOKEN}
|
|
|
|
python -m pip install --upgrade pip
|
|
pip install setuptools wheel twine
|
|
python setup.py sdist bdist_wheel
|
|
twine upload dist/*
|