debian-skyfield-data/Makefile

17 lines
438 B
Makefile

help:
@echo "Skyfield data - Makefile targets (devs only)"
@echo
@echo " * download: Download all files if necessary, default options."
@echo " (see \`python download.py --help\` for options)"
@echo " * clean: remove all skyfield data from data directory."
@echo " * package: build python source package."
download:
python3 download.py
clean:
rm -f skyfield_data/data/*
package:
python3 setup.py sdist bdist_wheel