File: Makefile

package info (click to toggle)
python-countrynames 1.16.10-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,320 kB
  • sloc: python: 705; makefile: 12; sh: 5
file content (15 lines) | stat: -rw-r--r-- 182 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

all: clean

compile:
	python countrynames/compile.py

typecheck:
	mypy --strict countrynames

test: compile typecheck
	pip install -q -e ".[dev]"
	pytest

clean:
	rm -rf dist build