9 lines
147 B
Makefile
9 lines
147 B
Makefile
upload_to_pypi:
|
|
pip install twine setuptools
|
|
rm -rf dist/*
|
|
rm -rf build/*
|
|
python setup.py sdist build
|
|
twine upload dist/*
|
|
|
|
test:
|
|
nosetests -v
|