We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 654e698 commit a099b3fCopy full SHA for a099b3f
Makefile
@@ -45,6 +45,9 @@ build_cython:
45
python setup.py build_ext --inplace
46
47
build:
48
+ python -c "import shutil; shutil.rmtree('build', True)"
49
+ python -c "import shutil; shutil.rmtree('dist', True)"
50
+ python -c "import shutil; shutil.rmtree('pyFileFixity.egg-info', True)"
51
python setup.py sdist --formats=gztar,zip bdist_wininst
52
python setup.py sdist bdist_wheel
53
@@ -54,5 +57,11 @@ pypimeta:
54
57
pypi:
55
58
twine upload dist/*
56
59
60
+buildupload:
61
+ @make testsetup
62
+ @make build
63
+ @make pypimeta
64
+ @make pypi
65
+
66
none:
67
# used for unit testing
0 commit comments