OSDN Git Service

update
[meshio/pymeshio.git] / setup.py
1 from setuptools import setup
2 import sys
3
4 name='pymeshio'
5 version='1.9.2'
6 short_description='pure python 3d model io library'
7 long_description='''\
8 `pymeshio` is a package for 3d model io.
9 create for blender import/expoert plugin backend.
10
11 Requirements
12 ------------
13 * Python 3
14
15 Features
16 --------
17 * read/write Metasequioa mqo format
18 * read/write MikuMikuDance pmd format
19 * read/write MikuMikuDance vmd format
20 * read/write MikuMikuDance vpd format
21
22 Setup
23 -----
24 ::
25
26    $ easy_install pymeshio
27    or
28    $ unzip pymeshio-x.x.x.zip
29    $ cd pymeshio-x.x.x
30    $ python setup.py install
31
32 History
33 -------
34 1.9.2 (2011-9-29)
35 ~~~~~~~~~~~~~~~~~~
36 * add tkinter viewer sample
37
38 1.9.1 (2011-9-23)
39 ~~~~~~~~~~~~~~~~~~
40 * register pypi
41 '''
42
43 classifiers=[
44         'Programming Language :: Python :: 3',
45         'License :: OSI Approved :: zlib/libpng License',
46         'Topic :: Multimedia :: Graphics :: 3D Modeling',
47         ]
48
49 setup(
50         name=name,
51         version=version,
52         description=short_description,
53         long_description=long_description,
54         classifiers=classifiers,
55         keywords=['mqo', 'pmd', 'vmd', 'vpd', 'mmd', 'blender'],
56         author='ousttrue',
57         author_email='ousttrue@gmail.com',
58         url='http://meshio.sourceforge.jp/',
59         license='zlib',
60         package_dir={
61             'pymeshio': 'blender25-meshio/pymeshio'
62             },
63         packages=['pymeshio'],
64         test_suite='nose.collector',
65         tests_require=['Nose'],
66         zip_safe = (sys.version>="2.5"),   # <2.5 needs unzipped for -m to work
67         )
68