16 lines
434 B
Python
16 lines
434 B
Python
|
|
|
|
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.so'],
|
|
include_dirs=['/usr/include/libburn'], # FIXME: make this more
|
|
# portable
|
|
)]
|
|
)
|
|
|