assimp-sys 0.3.1

Rust FFI bindings for the Assimp library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
 # -*- coding: utf-8 -*-
import os
from distutils.core import setup

setup(name='pyassimp',
      version='3.3',
      license='ISC',
      description='Python bindings for the Open Asset Import Library (ASSIMP)',
      url='https://github.com/assimp/assimp',
      packages=['pyassimp'],
      data_files=[('share/pyassimp', ['README.md']),
                  ('share/examples/pyassimp', ['scripts/' + f for f in os.listdir('scripts/')])], requires=['numpy']
      )