diff --git a/Makefile b/Makefile index 194d4da..d194dfa 100644 --- a/Makefile +++ b/Makefile @@ -45,6 +45,9 @@ build_cython: python setup.py build_ext --inplace build: + python -c "import shutil; shutil.rmtree('build', True)" + python -c "import shutil; shutil.rmtree('dist', True)" + python -c "import shutil; shutil.rmtree('pyFileFixity.egg-info', True)" python setup.py sdist --formats=gztar,zip bdist_wininst python setup.py sdist bdist_wheel @@ -54,5 +57,11 @@ pypimeta: pypi: twine upload dist/* +buildupload: + @make testsetup + @make build + @make pypimeta + @make pypi + none: # used for unit testing