OSDN Git Service

update setup.py
[meshio/pymeshio.git] / setup.py
index 42b0a4d..cc4d167 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -4,9 +4,14 @@ from setuptools import setup
 
 setup(
         name='pymeshio',
-        version='1.8.2',
+        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/',
@@ -16,6 +21,7 @@ setup(
             },
         packages=['pymeshio'],
         test_suite='nose.collector',
+        tests_require=['Nose'],
         zip_safe = (sys.version>="2.5"),   # <2.5 needs unzipped for -m to work
         )