chiark / gitweb /
algorithms.py: Support the new blockcipher-based MAC modes.
[catacomb-python] / setup.py
index fe0ed538bf9389645be87fb2e89a64086ebdf969..b5e3fcdc278e51deb605eb0287adf369b471680e 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,7 @@
 import distutils.core as DC
 import mdwsetup as MS
 
-MS.pkg_config('catacomb', '2.3.0.1+4')
+MS.pkg_config('catacomb', '2.4.2+23')
 MS.pkg_config('mLib', '2.0.4')
 
 cat = DC.Extension('catacomb._base',
@@ -18,11 +18,12 @@ 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'],
+         scripts = ['pock', 'pwsafe'],
+         data_files = [('share/man/man1', ['pock.1', 'pwsafe.1'])],
          genfiles = [MS.Generate('algorithms.h')],
          ext_modules = [cat])