build instructions.
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
|
||||
all: clean test dists
|
||||
|
||||
test:
|
||||
nosetests
|
||||
|
||||
dists:
|
||||
python setup.py sdist
|
||||
python setup.py bdist_wheel
|
||||
|
||||
release: dists
|
||||
pip install -q twine
|
||||
twine upload dist/*
|
||||
|
||||
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 {} +
|
||||
Reference in New Issue
Block a user