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 f279506 commit 787477dCopy full SHA for 787477d
Makefile
@@ -13,7 +13,10 @@ README.rst: README.md
13
python setup.py check -r -s || exit 1
14
15
upload: setup.py README.rst
16
- python setup.py sdist upload --sign
+ rm -f dist/*
17
+ python setup.py bdist_wheel --universal
18
+ gpg --detach-sign -a dist/*
19
+ twine upload dist/*
20
21
tag:
22
@echo "Tagging v$(VERSION)..."
setup.py
@@ -1,6 +1,6 @@
1
# -*- coding: utf-8 -*-
2
#
3
-from distutils.core import setup
+from setuptools import setup
4
import os
5
import codecs
6
0 commit comments