We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56f6e3b commit 1de8073Copy full SHA for 1de8073
2 files changed
Makefile
@@ -0,0 +1,23 @@
1
+# vim: set noexpandtab:
2
+pypi: pydist pypipush
3
+
4
+pydist: pyclean test
5
+ python setup.py sdist bdist_wheel
6
7
+pypipush: dist
8
+ twine upload dist/*
9
10
+pyclean:
11
+ python setup.py clean
12
+ rm -rf *egg-info build dist
13
14
+test: tox
15
16
+unittest:
17
+ python -m unittest discover
18
19
+tox:
20
+ tox
21
22
23
+.PHONY: pypi pydist pypipush pyclean test unittest tox
dev_requirements.txt
@@ -1,4 +1,5 @@
#releasing
bumpr
tox
+twine
wheel
0 commit comments