2009-06-05 22:59:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
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"],
|
2009-06-09 15:34:41 +00:00
|
|
|
libraries=[':libburn.so'],
|
2009-06-05 22:59:51 +00:00
|
|
|
include_dirs=['/usr/include/libburn'], # FIXME: make this more
|
|
|
|
# portable
|
|
|
|
)]
|
|
|
|
)
|
|
|
|
|