algorithms.c (AEADAAD.copy): Propagate the hashed length to the copy.
[catacomb-python] / setup.py
1 #! /usr/bin/python
2
3 import distutils.core as DC
4 import mdwsetup as MS
5
6 MS.pkg_config('catacomb', '2.5.0')
7 MS.pkg_config('mLib', '2.2.2.1')
8
9 cat = DC.Extension('catacomb._base',
10 ['catacomb.c', 'bytestring.c', 'buffer.c',
11 'rand.c', 'algorithms.c', 'pubkey.c', 'pgen.c',
12 'mp.c', 'field.c', 'ec.c', 'group.c', 'passphrase.c',
13 'share.c', 'key.c', 'util.c'],
14 ##extra_compile_args = ['-O0'],
15 include_dirs = MS.uniquify(MS.INCLUDEDIRS),
16 library_dirs = MS.uniquify(MS.LIBDIRS),
17 libraries = MS.uniquify(MS.LIBS))
18
19 MS.setup(name = 'catacomb-python',
20 description = 'Interface to Catacomb cryptographic library',
21 url = 'https://git.distorted.org.uk/~mdw/catacomb-python/',
22 author = 'Straylight/Edgeware',
23 author_email = 'mdw@distorted.org.uk',
24 license = 'GNU General Public License',
25 packages = ['catacomb'],
26 scripts = ['pock', 'pwsafe'],
27 data_files = [('share/man/man1', ['pock.1', 'pwsafe.1'])],
28 genfiles = [MS.Generate('algorithms.h')],
29 unittest_dir = "t",
30 unittests = ["t-misc", "t-algorithms", "t-bytes", "t-buffer",
31 "t-convert", "t-ec", "t-field", "t-group", "t-key",
32 "t-mp", "t-passphrase", "t-pgen", "t-pubkey",
33 "t-rand", "t-rat", "t-share"],
34 ext_modules = [cat])