OSDN Git Service

fix import shape
[meshio/pymeshio.git] / setup.py
index 26443e0..39cc6be 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,8 +1,10 @@
-import setuptools
+#from distutils.core import setup
+import sys
+from setuptools import setup
 
-setuptools.setup(
+setup(
         name='pymeshio',
-        version='1.8.0',
+        version='1.8.4',
         description='pure python 3d model io library',
         keywords=[],
         author='ousttrue',
@@ -13,6 +15,7 @@ setuptools.setup(
             'pymeshio': 'blender25-meshio/pymeshio'
             },
         packages=['pymeshio'],
-        test_suite='nose.collector'
+        test_suite='nose.collector',
+        zip_safe = (sys.version>="2.5"),   # <2.5 needs unzipped for -m to work
         )