]> arthur.barton.de Git - bup.git/blob - lib/bup/csetup.py
Merge branch 'master' of git://github.com/thatch/bup
[bup.git] / lib / bup / csetup.py
1 from distutils.core import setup, Extension
2
3 _helpers_mod = Extension('_helpers', sources=['_helpers.c', 'bupsplit.c'])
4
5 setup(name='_helpers',
6       version='0.1',
7       description='accelerator library for bup',
8       ext_modules=[_helpers_mod])