Skip to content

Commit

Permalink
add a pypi publishing script
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-cooper committed May 30, 2023
1 parent ec10057 commit c139b3e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions pypi-publish.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/usr/bin/env bash

rm -r titanoboa.egg-info/ dist/

# requires: `pip install build`
python -m build

# requires: `pip install twine`
# requires twine being configured, e.g. with a ~/.pypirc file
twine upload dist/*

0 comments on commit c139b3e

Please sign in to comment.