Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 
 

14 rader
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. )