]> arthur.barton.de Git - bup.git/blob - csetup.py
bup join: continue gracefully if one of the requested files does not exist.
[bup.git] / csetup.py
1 from distutils.core import setup, Extension
2
3 _hashsplit_mod = Extension('_hashsplit', sources=['_hashsplit.c'])
4
5 setup(name='_hashsplit',
6       version='0.1',
7       description='hashsplit helper library for bup',
8       ext_modules=[_hashsplit_mod])