File tree Expand file tree Collapse file tree 2 files changed +32
-1
lines changed
Expand file tree Collapse file tree 2 files changed +32
-1
lines changed Original file line number Diff line number Diff line change 1+ .PHONY : clean-pyc clean-build docs clean build install install-all version
2+
3+ help :
4+ @echo " clean-build - remove build artifacts"
5+ @echo " clean-pyc - remove Python file artifacts"
6+ @echo " release - package and upload a release"
7+ @echo " dist - package"
8+
9+ clean : clean-build clean-pyc
10+
11+ clean-build :
12+ rm -rf build/
13+ rm -rf dist/
14+ rm -rf * .egg-info
15+
16+ clean-pyc :
17+ find . -name ' *.pyc' -exec rm -f {} +
18+ find . -name ' *.pyo' -exec rm -f {} +
19+ find . -name ' *~' -exec rm -f {} +
20+
21+ version :
22+ python setup.py --version
23+
24+ release : clean build
25+ python setup.py sdist upload
26+ python setup.py bdist_wheel upload
27+
28+ dist : clean build
29+ python setup.py sdist
30+ python setup.py bdist_wheel
31+ ls -l dist
Original file line number Diff line number Diff line change 1- version = __version__ = '1.1.6.1 '
1+ version = __version__ = '1.1.7 '
You can’t perform that action at this time.
0 commit comments