proxy.py/Makefile

18 lines
350 B
Makefile
Raw Normal View History

2013-12-23 21:51:45 +00:00
.PHONY: all clean package test
all: clean test
clean:
find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +
find . -name '*~' -exec rm -f {} +
test:
nosetests -v --with-coverage --cover-package=proxy --cover-erase --cover-html --nocapture
package:
python setup.py sdist
release:
python setup.py sdist register upload