Initial import of Python Bindings for libburn

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

File diff suppressed because it is too large Load Diff

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])