X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/catacomb-python/blobdiff_plain/ea0c812abf0cae71f4ea9cf2fdfb581601275e18..e2a9e88ceb3fdbf9904366e7b3d2f87a9bcea9d7:/setup.py diff --git a/setup.py b/setup.py index 161e2af..80a1547 100755 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ import distutils.core as DC import mdwsetup as MS -MS.pkg_config('catacomb', '2.2.0') +MS.pkg_config('catacomb', '2.3.0.1+4') MS.pkg_config('mLib', '2.0.4') cat = DC.Extension('catacomb._base', @@ -18,11 +18,16 @@ cat = DC.Extension('catacomb._base', MS.setup(name = 'catacomb-python', description = 'Interface to Catacomb cryptographic library', - url = 'http://www.distorted.org.uk/~mdw/Catacomb-2.1.0', + url = 'https://git.distorted.org.uk/~mdw/catacomb-python/', author = 'Straylight/Edgeware', author_email = 'mdw@distorted.org.uk', license = 'GNU General Public License', packages = ['catacomb'], scripts = ['pwsafe'], 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])