Makefile 165 B

123456789101112
  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/*