Skip to content

Commit 787477d

Browse files
committed
better packaging
1 parent f279506 commit 787477d

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@ README.rst: README.md
1313
python setup.py check -r -s || exit 1
1414

1515
upload: setup.py README.rst
16-
python setup.py sdist upload --sign
16+
rm -f dist/*
17+
python setup.py bdist_wheel --universal
18+
gpg --detach-sign -a dist/*
19+
twine upload dist/*
1720

1821
tag:
1922
@echo "Tagging v$(VERSION)..."

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
#
3-
from distutils.core import setup
3+
from setuptools import setup
44
import os
55
import codecs
66

0 commit comments

Comments
 (0)