From cbc632262f0a8eaf3c5d2d65b866c37f29744513 Mon Sep 17 00:00:00 2001 From: stonebig Date: Sat, 24 Jan 2015 14:23:14 +0100 Subject: [PATCH] do my wheel ! python setup.py sdist bdist_wheel --- setup.cfg | 2 ++ setup.py | 5 ++--- 2 files changed, 4 insertions(+), 3 deletions(-) create mode 100644 setup.cfg diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 00000000..2a9acf13 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal = 1 diff --git a/setup.py b/setup.py index 7b36604f..1e357a0d 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,6 @@ #!/usr/bin/env python - -from distutils.core import setup - +# -*- coding: utf-8 -*- +from setuptools import setup setup(name='tqdm', version='1.0', description='A Simple Python Progress Meter',