OSDN Git Service

fix 1.8.0
[meshio/pymeshio.git] / setup.py
1 import setuptools
2
3 setuptools.setup(
4         name='pymeshio',
5         version='1.8.0',
6         description='pure python 3d model io library',
7         keywords=[],
8         author='ousttrue',
9         author_email='ousttrue@gmail.com',
10         url='http://meshio.sourceforge.jp/',
11         license='zlib',
12         package_dir={
13             'pymeshio': 'blender25-meshio/pymeshio'
14             },
15         packages=['pymeshio'],
16         test_suite='nose.collector'
17         )
18