setup.py 826 B

1234567891011121314151617181920212223242526
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. import os
  4. from distutils.core import setup
  5. def readme():
  6. with open('README.rst') as f:
  7. return f.read()
  8. setup(name='pyassimp',
  9. version='5.2.5',
  10. license='ISC',
  11. description='Python bindings for the Open Asset Import Library (ASSIMP)',
  12. long_description=readme(),
  13. url='https://github.com/assimp/assimp',
  14. author='ASSIMP developers',
  15. author_email='[email protected]',
  16. maintainer='Séverin Lemaignan',
  17. maintainer_email='[email protected]',
  18. packages=['pyassimp'],
  19. data_files=[
  20. ('share/pyassimp', ['README.rst']),
  21. ('share/examples/pyassimp', ['scripts/' + f for f in os.listdir('scripts/')])
  22. ],
  23. requires=['numpy']
  24. )