aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorJ08nY2017-06-25 22:26:20 +0200
committerJ08nY2017-06-25 22:26:20 +0200
commit4cfe4ddec61e78ff4fe00cc9ce23ece5da357851 (patch)
treef5906e7b7fed628cdbe3ba85a5f9e4c26288eb14 /setup.py
parent9646413e0d8b113c463f326f1aa58d5da1cedcd1 (diff)
downloadmailman-pgp-4cfe4ddec61e78ff4fe00cc9ce23ece5da357851.tar.gz
mailman-pgp-4cfe4ddec61e78ff4fe00cc9ce23ece5da357851.tar.zst
mailman-pgp-4cfe4ddec61e78ff4fe00cc9ce23ece5da357851.zip
Diffstat (limited to 'setup.py')
-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'
)