This commit is contained in:
bennykok
2024-07-16 14:45:28 -07:00
commit 6ea0b09d80
207 changed files with 8190 additions and 0 deletions

9
scripts/publish.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/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/*