diff options
-rw-r--r-- | setup.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,10 +1,10 @@ -from setuptools import setup
import glob
import sys
if sys.platform=="win32":
- import py2exe
- from distutils.core import setup
+ from distutils.core import setup
+else:
+ from setuptools import setup
setup(
|