You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
445 B

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