setup.py 510 B

12345678910111213141516
  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=[
  11. ('share/pyassimp', ['README.md']),
  12. ('share/examples/pyassimp', ['scripts/' + f for f in os.listdir('scripts/')])
  13. ],
  14. requires=['numpy']
  15. )