OSDN Git Service

fix version
[meshio/pymeshio.git] / setup.py
1 #!/usr/bin/env python
2 # coding: utf-8
3
4 from setuptools import setup
5 import sys
6 import os
7 import shutil
8
9 name='pymeshio'
10 version='2.0.2'
11 short_description='pure python 3d model io library'
12 long_description='''\
13 `pymeshio` is a package for 3d model io.
14 create for blender import/expoert plugin backend.
15
16 Requirements
17 ------------
18 * Python 3
19 * Python 2.7
20
21 Features
22 --------
23 * read/write Metasequioa mqo format
24 * read/write MikuMikuDance pmd format
25 * read-only  MikuMikuDance pmx format
26 * read/write MikuMikuDance vmd format
27 * read/write MikuMikuDance vpd format
28
29
30 Setup
31 -----
32 ::
33
34    $ easy_install pymeshio
35    or
36    $ unzip pymeshio-x.x.x.zip
37    $ cd pymeshio-x.x.x
38    $ python setup.py install
39
40 Usage
41 -----
42 ::
43
44     >>> import pymeshio.pmx.loader
45     >>> m=pymeshio.pmx.loader.load('resources/初音ミクVer2.pmx')
46     >>> print(m)
47     <pmx-2.0 "Miku Hatsune" 12354vertices>
48     >>> print(dir(m))
49     ['__class__', '__delattr__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__gt__', '__hash__', '__init__', '__le__', '__lt__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__slots__', '__str__', '__subclasshook__', 'bones', 'comment', 'display_slots', 'english_comment', 'english_name', 'indices', 'joints', 'materials', 'morphs', 'name', 'rigidbodies', 'textures', 'version', 'vertices']
50
51 ToDo
52 --------
53
54 * pmx writer
55 * pmd to pmx converter
56 * blender importer for pmx
57 * blender exporter for pmx
58
59
60 History
61 -------
62 2.0.2 (2011-10-01)
63 ~~~~~~~~~~~~~~~~~~
64 * fix for Python 2.7(remove anotation)
65 * fix pymeshio.pmx.Bdef1.bone_index to index0
66 * fix pymeshio.pmx.Material.index_count to vertex_count
67 * add pmx example
68
69 2.0.0 (2011-9-30)
70 ~~~~~~~~~~~~~~~~~~
71 * add pmx loader
72
73 1.9.2 (2011-9-29)
74 ~~~~~~~~~~~~~~~~~~
75 * add tkinter viewer sample
76
77 1.9.1 (2011-9-23)
78 ~~~~~~~~~~~~~~~~~~
79 * register pypi
80 '''
81
82 classifiers=[
83         'Programming Language :: Python :: 3',
84         'License :: OSI Approved :: zlib/libpng License',
85         'Topic :: Multimedia :: Graphics :: 3D Modeling',
86         ]
87
88 # copy pymeshio dir for blender25 plugin
89 PYMESHIO_DIR_IN_BLENDER='blender25-meshio/pymeshio'
90 if os.path.exists(PYMESHIO_DIR_IN_BLENDER):
91     shutil.rmtree(PYMESHIO_DIR_IN_BLENDER)    
92 print("copy pymeshio to blender-25")
93 shutil.copytree('pymeshio', PYMESHIO_DIR_IN_BLENDER)
94
95 setup(
96         name=name,
97         version=version,
98         description=short_description,
99         long_description=long_description,
100         classifiers=classifiers,
101         keywords=['mqo', 'pmd', 'pmx', 'vmd', 'vpd', 'mmd', 'blender'],
102         author='ousttrue',
103         author_email='ousttrue@gmail.com',
104         url='http://meshio.sourceforge.jp/',
105         license='zlib',
106         #package_dir={
107         #    'pymeshio': 'blender25-meshio/pymeshio'
108         #    },
109         packages=['pymeshio'],
110         test_suite='nose.collector',
111         tests_require=['Nose'],
112         zip_safe = (sys.version>="2.5"),   # <2.5 needs unzipped for -m to work
113         )
114