]> arthur.barton.de Git - bup.git/blob - lib/bup/csetup.py
get: adjust for python 3 and test there
[bup.git] / lib / bup / csetup.py
1
2 from __future__ import absolute_import
3
4 from distutils.core import setup, Extension
5
6 _helpers_mod = Extension('_helpers',
7                          sources=['_helpers.c', 'bupsplit.c'],
8                          depends=['../../config/config.h'])
9
10 setup(name='_helpers',
11       version='0.1',
12       description='accelerator library for bup',
13       ext_modules=[_helpers_mod])