Initial import of Python Bindings for libburn

This commit is contained in:
Anant Narayanan 2006-09-19 19:31:20 +00:00
parent dbaa590b4e
commit 9ab1b86ef9
2 changed files with 1962 additions and 0 deletions

1943
libburn/burnmodule.c Normal file

File diff suppressed because it is too large Load Diff

19
libburn/setup.py Normal file
View 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])