X-Git-Url: http://git.osdn.jp/view?a=blobdiff_plain;f=setup.py;h=42b0a4daa5fcf92bf8aaa5be6a6504c091b45a32;hb=d6a98c93a2201c3b1d9a8481da91274398c1dc84;hp=4403a55f3b7b9f30e7c71c2d02a6be9f48148b44;hpb=802733e2de82efd381b02f51c7c60cff56a6330b;p=meshio%2Fpymeshio.git diff --git a/setup.py b/setup.py index 4403a55..42b0a4d 100644 --- 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.1.0', + version='1.8.2', 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 )