diff options
author | Marek Siarkowicz <mareksiarkowicz@gmail.com> | 2015-06-12 13:48:42 +0200 |
---|---|---|
committer | Marek Siarkowicz <mareksiarkowicz@gmail.com> | 2015-06-12 13:48:42 +0200 |
commit | 7c7a156588b99dcd1d632a4d8ff6e53f46aef2e8 (patch) | |
tree | 905026df33ec3f5815f1e628b7cab5bb33fae8f9 | |
parent | 78db89e1086b63c2fdf38195d6b87f752b1ce70f (diff) | |
download | pyParrotZikTCP-7c7a156588b99dcd1d632a4d8ff6e53f46aef2e8.tar.xz pyParrotZikTCP-7c7a156588b99dcd1d632a4d8ff6e53f46aef2e8.zip |
Fix import.
Diffstat (limited to '')
-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(
|