[pyassimp] Added a setup.py

pull/8/merge^2
Séverin Lemaignan 2012-10-16 22:52:52 +02:00
parent 79ed83244c
commit a6a30233e1
1 changed files with 13 additions and 0 deletions

View File

@ -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/')])]
)