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 18d4b47 commit a4fa723Copy full SHA for a4fa723
Makefile
@@ -0,0 +1,6 @@
1
+.PHONY: publish
2
+
3
+publish:
4
+ rm -rf dist/
5
+ tox -e packaging
6
+ twine upload -s dist/*
setup.py
@@ -23,11 +23,6 @@
23
else:
24
raise RuntimeError("No version number found!")
25
26
-# Stealing this from Kenneth Reitz
27
-if sys.argv[-1] == 'publish':
28
- os.system('python setup.py sdist upload')
29
- sys.exit()
30
-
31
setup(
32
name='hyperframe',
33
version=version,
0 commit comments