aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorJ08nY2017-06-02 16:33:20 +0200
committerJ08nY2017-06-02 16:35:03 +0200
commitecc08d6286a57fcd20e48f6142f5810058b890de (patch)
treec914d207421425031980574fcea4f76824dcfac5 /setup.py
parentfb0202ba476d87648736a4546e34644c7e96b6aa (diff)
downloadmailman-pgp-ecc08d6286a57fcd20e48f6142f5810058b890de.tar.gz
mailman-pgp-ecc08d6286a57fcd20e48f6142f5810058b890de.tar.zst
mailman-pgp-ecc08d6286a57fcd20e48f6142f5810058b890de.zip
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py31
1 files changed, 31 insertions, 0 deletions
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..65b754b
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,31 @@
+from setuptools import setup, find_packages
+
+setup(
+ name='pgpmailman',
+ version='0.1',
+ 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.
+ """,
+ author='Jan Jancar',
+ author_email='johny@neuromancer.sk',
+ license='',
+ classifiers=[
+ 'Development Status :: 1 - Planning',
+ 'Intended Audience :: System Administrators',
+ 'Operating System :: POSIX',
+ 'Programming Language :: Python :: 3.4',
+ 'Programming Language :: Python :: 3.5',
+ 'Programming Language :: Python :: 3.6',
+ 'Topic :: Communications :: Email :: Mailing List Servers',
+ ],
+ keywords='email pgp',
+ packages=find_packages('src'),
+ package_dir={'': 'src'},
+ install_requires=[
+ 'mailman>=3.1.0',
+ 'pgp',
+ 'atpublic',
+ 'zope.interface',
+ ]
+)