OSDN Git Service

fix test
[meshio/pymeshio.git] / setup.py
index 7ceb7eb..141e944 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,4 +1,5 @@
 #!/usr/bin/env python
+# coding: utf-8
 
 from setuptools import setup
 import sys
@@ -6,7 +7,7 @@ import os
 import shutil
 
 name='pymeshio'
-version='2.0.1'
+version='2.1.0'
 short_description='pure python 3d model io library'
 long_description='''\
 `pymeshio` is a package for 3d model io.
@@ -15,6 +16,7 @@ create for blender import/expoert plugin backend.
 Requirements
 ------------
 * Python 3
+* Python 2.7
 
 Features
 --------
@@ -39,8 +41,8 @@ Usage
 -----
 ::
 
-    >>> import pymeshio.pmx.loader
-    >>> m=pymeshio.pmx.loader.load('resources/初音ミクVer2.pmx')
+    >>> import pymeshio.pmx.reader
+    >>> m=pymeshio.pmx.reader.read('resources/初音ミクVer2.pmx')
     >>> print(m)
     <pmx-2.0 "Miku Hatsune" 12354vertices>
     >>> print(dir(m))
@@ -57,8 +59,13 @@ ToDo
 
 History
 -------
-2.0.0 (2011-10-01)
+2.1.0 (2011-10-02)
+
+* refactoring api
+
+2.0.2 (2011-10-01)
 ~~~~~~~~~~~~~~~~~~
+* fix for Python 2.7(remove anotation)
 * fix pymeshio.pmx.Bdef1.bone_index to index0
 * fix pymeshio.pmx.Material.index_count to vertex_count
 * add pmx example