17 lines
512 B
Python
17 lines
512 B
Python
# -*- coding: utf-8 -*-
|
|
import os
|
|
from distutils.core import setup
|
|
|
|
setup(name='pyassimp',
|
|
version='4.1.0',
|
|
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']
|
|
)
|