X-Git-Url: https://git.distorted.org.uk/~mdw/catacomb-python/blobdiff_plain/204416123385794c92b7767e7702c0d4fd387468..51b862780c11007371438ed13605ea575a0fd4a7:/setup.py diff --git a/setup.py b/setup.py index 69bf393..87a321c 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,9 @@ cat = DC.Extension('catacomb._base', ['catacomb.c', 'bytestring.c', 'buffer.c', 'rand.c', 'algorithms.c', 'pubkey.c', 'pgen.c', 'mp.c', 'field.c', 'ec.c', 'group.c', 'passphrase.c', - 'share.c', 'key.c', 'util.c'], + 'share.c', 'key.c', + 'pyke/pyke.c', 'pyke/pyke-mLib.c', + 'pyke/mapping.c', 'pyke/mapping-mLib.c'], ##extra_compile_args = ['-O0'], include_dirs = MS.uniquify(MS.INCLUDEDIRS), library_dirs = MS.uniquify(MS.LIBDIRS), @@ -26,4 +28,9 @@ MS.setup(name = 'catacomb-python', scripts = ['pock', 'pwsafe'], data_files = [('share/man/man1', ['pock.1', 'pwsafe.1'])], genfiles = [MS.Generate('algorithms.h')], + unittest_dir = "t", + unittests = ["t-misc", "t-algorithms", "t-bytes", "t-buffer", + "t-convert", "t-ec", "t-field", "t-group", "t-key", + "t-mp", "t-passphrase", "t-pgen", "t-pubkey", + "t-rand", "t-rat", "t-share"], ext_modules = [cat])