File: Makefile

package info (click to toggle)
django-modeltranslation 0.19.16-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 992 kB
  • sloc: python: 5,816; javascript: 432; makefile: 151
file content (25 lines) | stat: -rw-r--r-- 377 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
24
25
release:
	commit-and-tag-version

publish: build
	twine upload dist/*
	git push --follow-tags

build: clean
	python -m build --installer uv

clean:
	rm -rf dist

lint:
	ruff check modeltranslation
	ruff format --check modeltranslation *.py

typecheck:
	mypy --pretty modeltranslation

sync:
	uv sync --group dev --group lsp --no-install-project

test:
	uv run --no-sync pytest