adding a distutils setup file for python-libburn

This commit is contained in:
Aren Olson 2009-06-05 22:59:51 +00:00
parent a75c6d4a36
commit 11333e3293
1 changed files with 15 additions and 0 deletions

15
python-libburn/setup.py Normal file
View File

@ -0,0 +1,15 @@
from distutils.core import setup, Extension
setup(name = "python-libburn",
version = "0.0.1",
description = "Python bindings to libburn",
ext_modules = [Extension("pyburn",
["pyburn.cpp"],
libraries=['libburn'],
include_dirs=['/usr/include/libburn'], # FIXME: make this more
# portable
)]
)