X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/catacomb-python/blobdiff_plain/6d4db0bf4b67e65708637466d4f0d306ed1dfe53..d61f90c1469221a57a59a8d31f110c7a388a63ae:/setup.py diff --git a/setup.py b/setup.py index 0fa8848..6d287c0 100644 --- a/setup.py +++ b/setup.py @@ -40,8 +40,6 @@ def uniquify(l): u[i] = 1 return o -cflags = [] -libs = [] libconfig('catacomb', '2.1.0') libconfig('mLib', '2.0.3') @@ -94,20 +92,21 @@ for g in ['algorithms.h']: rename(fnew, fout) cat = Extension('catacomb._base', - ['catacomb.c', 'bytestring.c', + ['catacomb.c', 'bytestring.c', 'buffer.c', 'rand.c', 'algorithms.c', 'pubkey.c', 'pgen.c', - 'mp.c', 'field.c', 'ec.c', 'group.c', 'passphrase.c'], + 'mp.c', 'field.c', 'ec.c', 'group.c', 'passphrase.c', + 'share.c', 'key.c', 'util.c'], ##extra_compile_args = ['-O0'], include_dirs = uniquify(incdirs), library_dirs = uniquify(libdirs), libraries = uniquify(libs)) -setup(name = 'Catacomb', - version = '2.1.0', +setup(name = 'catacomb-python', + version = '1.0.0', description = 'Interface to Catacomb cryptographic library', - url = 'http://tux.nsict.org/~mdw/Catacomb-2.1.0', + url = 'http://www.distorted.org.uk/~mdw/Catacomb-2.1.0', author = 'Straylight/Edgeware', - author_email = 'mdw@nsict.org', + author_email = 'mdw@distorted.org.uk', license = 'GNU General Public License', packages = ['catacomb'], scripts = ['pwsafe'],