13 lines
203 B
Makefile
13 lines
203 B
Makefile
SHELL := /bin/bash
|
|
|
|
init:
|
|
@python setup.py develop
|
|
@pip install -r requirements.txt
|
|
|
|
test:
|
|
rm -f .coverage
|
|
@nosetests -sv --with-coverage ./tests/
|
|
|
|
publish:
|
|
python setup.py sdist bdist_wheel upload
|