aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsetup.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 8484890..6ae4254 100755
--- a/setup.py
+++ b/setup.py
@@ -6,6 +6,7 @@ setup(
description='A PGP plugin for the GNU Mailman mailing list manager',
long_description="""\
A plugin for GNU Mailman that adds encrypted mailing lists via PGP/MIME.""",
+ url='https://gitlab.com/J08nY/mailman-pgp',
author='Jan Jancar',
author_email='johny@neuromancer.sk',
license='GPLv3',
@@ -29,5 +30,11 @@ A plugin for GNU Mailman that adds encrypted mailing lists via PGP/MIME.""",
'sqlalchemy',
'zope.interface',
'zope.event'
- ]
+ ],
+ tests_require=[
+ 'flufl.testing',
+ 'parameterized',
+ 'nose2'
+ ],
+ test_suite='nose2.collector.collector'
)