File: Makefile

package info (click to toggle)
mf2py 2.0.1-2
  • links: PTS
  • area: main
  • in suites: sid, trixie
  • size: 664 kB
  • sloc: python: 1,917; makefile: 19
file content (13 lines) | stat: -rw-r--r-- 255 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
install:
	poetry install
tests:
	poetry run pytest -s -vv --doctest-modules --doctest-glob README*
lint:
	poetry run black .
	poetry run isort .
docs_dev:
	poetry run mkdocs serve
docs_deploy:
	poetry run mkdocs gh-deploy
publish:
	poetry publish --build