setup.py 467 B

12345678910111213
  1. # -*- coding: utf-8 -*-
  2. import os
  3. from distutils.core import setup
  4. setup(name='pyassimp',
  5. version='3.3',
  6. license='ISC',
  7. description='Python bindings for the Open Asset Import Library (ASSIMP)',
  8. url='https://github.com/assimp/assimp',
  9. packages=['pyassimp'],
  10. data_files=[('share/pyassimp', ['README.md']),
  11. ('share/examples/pyassimp', ['scripts/' + f for f in os.listdir('scripts/')])], requires=['numpy']
  12. )