23 lines
385 B
Makefile
Raw Normal View History

2017-09-09 18:40:47 +02:00
all: clean test dists
2017-09-29 14:10:32 +02:00
.PHONY: test
2017-09-09 18:40:47 +02:00
test:
2017-09-29 14:10:32 +02:00
nosetests -v
2017-09-09 18:40:47 +02:00
dists:
python setup.py sdist
python setup.py bdist_wheel
release: dists
pip install -q twine
twine upload dist/*
2017-09-29 14:10:32 +02:00
.PHONY: clean
2017-09-09 18:40:47 +02:00
clean:
rm -rf dist build .eggs
find . -name '*.egg-info' -exec rm -fr {} +
find . -name '*.egg' -exec rm -f {} +
find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +