OSDN Git Service

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