Makefile 191 B

123456789101112131415
  1. .PHONY: FORCE format build
  2. main: format
  3. format:
  4. black --line-length 78 src
  5. build:
  6. pipenv run python -m build
  7. upload:
  8. pipenv run python -m twine upload dist/*
  9. test:
  10. pipenv run pytest