diff options
| author | J08nY | 2017-06-04 01:50:34 +0200 |
|---|---|---|
| committer | J08nY | 2017-06-04 01:50:34 +0200 |
| commit | ac4dd1658142ad625658722c2ce7ae7156d37955 (patch) | |
| tree | 0a61ea23b6f32f63607eaf3b20af27e916a85732 /setup.py | |
| parent | 86fa27c5021770fde212b81ec832a6fd9b08146e (diff) | |
| download | django-pgpmailman-ac4dd1658142ad625658722c2ce7ae7156d37955.tar.gz django-pgpmailman-ac4dd1658142ad625658722c2ce7ae7156d37955.tar.zst django-pgpmailman-ac4dd1658142ad625658722c2ce7ae7156d37955.zip | |
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..9cae556 --- /dev/null +++ b/setup.py @@ -0,0 +1,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', + ] +) |
