diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..d645be7 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,5 @@ +[bdist_wheel] +# This flag says that the code is written to work on both Python 2 and Python +# 3. If at all possible, it is good practice to do this. If you cannot, you +# will need to generate wheels for each Python version that you support. +universal=0 diff --git a/setup.py b/setup.py index 2bf0d7d..1dfaf72 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,5 @@ -from distutils.core import setup +#!/usr/bin/env python2 +from setuptools import setup import sys from subprocess import check_call from os.path import join, abspath, exists