mirror of
https://github.com/jazzband/django-axes.git
synced 2026-03-17 06:40:24 +00:00
13 lines
303 B
Makefile
13 lines
303 B
Makefile
all: clean check-manifest pyroma viewdoc
|
|
clean:
|
|
if [ -e .long-description.html ]; then rm .long-description.html ; fi
|
|
check-manifest:
|
|
check-manifest
|
|
viewdoc:
|
|
viewdoc
|
|
pyroma:
|
|
pyroma .
|
|
testrelease:
|
|
python setup.py sdist --format=zip upload -r test
|
|
release:
|
|
python setup.py sdist --format=zip upload
|