django-modeltranslation/Makefile
Victorien a9e95e8c78
feat: Add types
Refs #716
2024-04-04 11:27:00 +03:00

17 lines
258 B
Makefile

release:
standard-version
publish: clean
python setup.py sdist bdist_wheel
twine upload dist/*
git push --follow-tags
clean:
rm -rf dist
lint:
ruff check modeltranslation
ruff format --check modeltranslation *.py
typecheck:
mypy modeltranslation