Spaces:
Running
Running
| PYEXE = python3 | |
| default: | |
| 'Targets:' | |
| ' all-tests' | |
| ' test-easter' | |
| ' test-day-number' | |
| ' test-julian' | |
| ' test-time' | |
| ' test-coordinate' | |
| ' test-sun' | |
| ' test-planet-comet-binary' | |
| ' test-moon' | |
| ' test-eclipses' | |
| ' build' | |
| ' upload-test' | |
| ' upload' | |
| all-tests: test-easter test-day-number test-julian test-time test-coordinate test-sun test-planet-comet-binary test-moon test-eclipses | |
| test-easter: | |
| test_date_of_easter.py | |
| test-day-number: | |
| test_day_number.py | |
| test-julian: | |
| test_julian.py | |
| test-time: | |
| test_time.py | |
| test-coordinate: | |
| test_coordinate.py | |
| test-sun: | |
| test_sun.py | |
| test-planet-comet-binary: | |
| test_planet_comet_binary.py | |
| test-moon: | |
| test_moon.py | |
| test-eclipses: | |
| test_eclipses.py | |
| build: | |
| $(PYEXE) -m build | |
| upload-test: build | |
| $(PYEXE) -m twine upload --repository testpypi dist/* | |
| upload: build | |
| $(PYEXE) -m twine upload dist/* | |