From ad5cababbc3b3a70be4f3af558f9aefd8333a8fc Mon Sep 17 00:00:00 2001 From: Qi Zhang Date: Tue, 21 Aug 2018 17:31:35 -0400 Subject: [PATCH] Fix invalid 'bdist_wheel' command This is because `bdist_wheel` only works with setuptools (`import setuptools`) when running command `python3 setup.py sdist bdist_wheel`. --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8db05b3..fff5b33 100644 --- a/setup.py +++ b/setup.py @@ -2,9 +2,11 @@ from distutils.core import setup +import setuptools + setup( name='escpy', - version='0.0.1', + version='0.0.2', packages=[ 'escpy' ],