forked from nedbat/django_coverage_plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
32 lines (24 loc) · 898 Bytes
/
Makefile
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
26
27
28
29
30
31
32
# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
# For details: https://github.com/nedbat/django_coverage_plugin/blob/master/NOTICE.txt
# Makefile for django_coverage_plugin
default:
@echo "* No default action *"
test:
tox
clean:
-rm -rf *.egg-info
-rm -rf build dist
-rm -f *.pyc */*.pyc */*/*.pyc */*/*/*.pyc */*/*/*/*.pyc */*/*/*/*/*.pyc
-rm -f *.pyo */*.pyo */*/*.pyo */*/*/*.pyo */*/*/*/*.pyo */*/*/*/*/*.pyo
-rm -f *.bak */*.bak */*/*.bak */*/*/*.bak */*/*/*/*.bak */*/*/*/*/*.bak
-rm -rf __pycache__ */__pycache__ */*/__pycache__ */*/*/__pycache__ */*/*/*/__pycache__ */*/*/*/*/__pycache__
-rm -f MANIFEST
-rm -f .coverage .coverage.* coverage.xml
-rm -f setuptools-*.egg distribute-*.egg distribute-*.tar.gz
sterile: clean
-rm -rf .tox*
SDIST_CMD = python setup.py sdist --formats=gztar
kit:
$(SDIST_CMD)
kit_upload:
twine upload dist/*