proxy.py/Makefile

18 lines
287 B
Makefile

.PHONY: all clean test package release
all: clean test
clean:
find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +
find . -name '*~' -exec rm -f {} +
test:
python tests.py -v
package:
python setup.py sdist
release:
python setup.py sdist register upload