Files
astronomy/source/python/publish
Don Cross cba75aa2e4 Fixed #64 - pip package for Astronomy Engine.
Thanks to ebrominio, I was able to create a pip
package for Astronomy Engine. See:

https://pypi.org/project/astronomy-engine/1.0.1/

I will probably need to go back and keep the version
numbers in sync with the matching npm package.
2022-01-10 19:59:25 -05:00

5 lines
89 B
Bash
Executable File

#!/bin/bash
python3 -m build || exit $?
python3 -m twine upload dist/* || exit $?
exit 0