OSDN Git Service

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