OSDN Git Service

update setup.py
[meshio/pymeshio.git] / setup.py
index 4403a55..cc4d167 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,10 +1,17 @@
-import setuptools
+#from distutils.core import setup
+import sys
+from setuptools import setup
 
-setuptools.setup(
+setup(
         name='pymeshio',
-        version='1.1.0',
+        version='1.9.0',
         description='pure python 3d model io library',
-        keywords=[],
+        classfiers=[
+            'Programming Language :: Python :: 3',
+            'License :: OSI Approved :: zlib/libpng License',
+            'Topic :: Multimedia :: Graphics :: 3D Modeling',
+            ],
+        keywords=['mqo', 'pmd', 'vmd', 'vpd', 'mmd', 'blender'],
         author='ousttrue',
         author_email='ousttrue@gmail.com',
         url='http://meshio.sourceforge.jp/',
@@ -13,6 +20,8 @@ setuptools.setup(
             'pymeshio': 'blender25-meshio/pymeshio'
             },
         packages=['pymeshio'],
-        test_suite='nose.collector'
+        test_suite='nose.collector',
+        tests_require=['Nose'],
+        zip_safe = (sys.version>="2.5"),   # <2.5 needs unzipped for -m to work
         )