mirror of
https://github.com/cosinekitty/astronomy.git
synced 2025-12-25 08:38:11 -05:00
Generate astronomy.py directly in the package directory.
I realized it doesn't make sense to generate it in the
parent directory and then copy it; just generate it where
it will end up anyway.
Updated documentation so people know they can just do
pip install astronomy-engine
to install Astronomy Engine in their Python project.
Removed the GitHub Actions status badge because it is redundant with
the checkmark/X indicator.
Now that private symbols are no longer exported, I had to
fix a couple of places where the unit tests still accessed them.
6 lines
132 B
Bash
Executable File
6 lines
132 B
Bash
Executable File
#!/bin/bash
|
|
rm -f dist/*
|
|
python3 -m build || exit $?
|
|
python3 -m twine upload --repository astronomy-engine dist/* || exit $?
|
|
exit 0
|