mirror of
https://github.com/QingdaoU/Spirit.git
synced 2024-12-29 16:02:04 +00:00
14 lines
187 B
Makefile
14 lines
187 B
Makefile
|
clean:
|
||
|
rm -fr dist/ *.egg-info/
|
||
|
|
||
|
test:
|
||
|
python runtests.py
|
||
|
|
||
|
sdist: test clean
|
||
|
python setup.py sdist
|
||
|
|
||
|
release: test clean
|
||
|
python setup.py sdist upload
|
||
|
|
||
|
.PHONY: clean test sdist release
|