File tree Expand file tree Collapse file tree 1 file changed +18
-4
lines changed Expand file tree Collapse file tree 1 file changed +18
-4
lines changed Original file line number Diff line number Diff line change 2121
2222T = ""
2323
24+ clean :
25+ -rm -r build/*
26+ -rm -r dist/*
27+ -rm -r src/* .egg-info
28+ # -rm -r htmlconv/*
29+ # -rm .coverage*
30+ coverage erase
31+ find src/ tests/ -name ' *.pyc' -exec rm -f {} +
32+ find src/ tests/ -name ' *.pyo' -exec rm -f {} +
33+ # find src/ tests/ -name '*~' -exec rm -f {} +
34+ find src/ tests/ -name ' __pycache__' -exec rm -fr {} +
35+ # find src/ tests/ -name '*.htm' -exec rm -f {} +
36+ # find src/ tests/ -name '*.html' -exec rm -f {} +
37+ # find src/ tests/ -name '*.so' -exec rm -f {} +
38+
2439# docu:
2540# @(cd docs; make clean; make html)
2641
2742release :
28- -rm dist/*
29- -rm -r src/* .egg-info
43+ make clean
3044 python setup.py sdist bdist_wheel
31- gpg --detach-sign -a dist/literatur * .whl
32- gpg --detach-sign -a dist/literatur * .tar.gz
45+ gpg --detach-sign -a dist/loggedfs * .whl
46+ gpg --detach-sign -a dist/loggedfs * .tar.gz
3347
3448upload :
3549 for filename in $$ (ls dist/* .tar.gz dist/* .whl) ; do \
You can’t perform that action at this time.
0 commit comments