A library that computes the ephemerides.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

19 lines
421 B

  1. black:
  2. poetry run black kosmorrolib
  3. .PHONY: tests
  4. tests: doctests
  5. coverage-doctests:
  6. python3 -m poetry run coverage run tests.py
  7. coverage-report:
  8. python3 -m poetry run coverage report
  9. doctests:
  10. python3 -m poetry run python tests.py
  11. changelog:
  12. conventional-changelog -p angular -i CHANGELOG.md -s
  13. @echo -e "\e[32m✔\e[33m Changelog generated. Don't forget to update the version number before committing.\e[0m"