File: Makefile

package info (click to toggle)
pyjvcprojector 2.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 280 kB
  • sloc: python: 4,075; makefile: 21; sh: 5
file content (19 lines) | stat: -rw-r--r-- 302 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
all: format check test

format:
	ruff format jvcprojector tests

check:
	mypy jvcprojector tests
	ruff check jvcprojector tests --fix
	pylint jvcprojector tests

test:
	pytest

build: clean
	python3 -m build
	python -m twine upload -u __token__ dist/*

clean:
	rm -rf dist build pyjvcprojector.egg-info