[pyassimp] Added a setup.py
parent
79ed83244c
commit
a6a30233e1
|
@ -0,0 +1,13 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
import os
|
||||
from distutils.core import setup
|
||||
|
||||
setup(name='pyassimp',
|
||||
version='0.1',
|
||||
license='ISC',
|
||||
description='Python bindings for the Open Asset Import Library (ASSIMP)',
|
||||
url='http://assimp.sourceforge.net/',
|
||||
packages=['pyassimp'],
|
||||
data_files=[('share/pyassimp', ['README.md']),
|
||||
('share/examples/pyassimp', ['scripts/' + f for f in os.listdir('scripts/')])]
|
||||
)
|
Loading…
Reference in New Issue