File: Makefile

package info (click to toggle)
python-aiotractive 0.6.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 176 kB
  • sloc: python: 298; makefile: 20
file content (23 lines) | stat: -rw-r--r-- 271 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
lint: black isort pylint flake8

format:
	black .
	isort .

black:
	black --check .

isort:
	isort --check .

flake8:
	flake8 .

pylint:
	pylint aiotractive

dist:
	python setup.py sdist bdist_wheel
	twine check dist/*

.PHONY: black isort flake8 pylint lint format dist