aboutsummaryrefslogtreecommitdiff
path: root/setup.py
blob: 9cae556557aa4e89114a0e7e8965ff292c435312 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
from setuptools import find_packages, setup

setup(
    name='django-pgpmailman',
    version='0.1',
    description='A web interface extension for the GNU Mailman apps Postorius and HyperKitty.',
    long_description="""""",
    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'},
    include_package_data=True,
    install_requires=[
        'Django>=1.8',
        'Django<1.12',
        'django-mailman3',
        'mailmanclient',
    ]
)