mirror of
https://github.com/cosinekitty/astronomy.git
synced 2026-01-26 08:20:38 -05:00
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.
5 lines
89 B
Bash
Executable File
5 lines
89 B
Bash
Executable File
#!/bin/bash
|
|
python3 -m build || exit $?
|
|
python3 -m twine upload dist/* || exit $?
|
|
exit 0
|