Initial import of Python Bindings for libburn
This commit is contained in:
parent
c8b704043e
commit
3c90c638af
1943
branches/python/libburn/burnmodule.c
Normal file
1943
branches/python/libburn/burnmodule.c
Normal file
File diff suppressed because it is too large
Load Diff
19
branches/python/libburn/setup.py
Normal file
19
branches/python/libburn/setup.py
Normal file
@ -0,0 +1,19 @@
|
||||
from distutils.core import setup, Extension
|
||||
|
||||
module = Extension('burn',
|
||||
define_macros = [('MAJOR_VERSION', '0'),
|
||||
('MINOR_VERSION', '1')],
|
||||
include_dirs = ['/usr/local/include'],
|
||||
libraries = ['burn', 'pthread'],
|
||||
sources = ['burnmodule.c'])
|
||||
|
||||
setup (name = 'burn',
|
||||
version = '0.1',
|
||||
description = 'Python Bindings for libburn',
|
||||
author = 'Anant Narayanan',
|
||||
author_email = 'anant@kix.in',
|
||||
url = 'http://libburn.pykix.org/',
|
||||
long_description = '''
|
||||
Really stupid bindings for libburn-SVN
|
||||
''',
|
||||
ext_modules = [module])
|
Loading…
Reference in New Issue
Block a user