aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py56
1 files changed, 30 insertions, 26 deletions
diff --git a/setup.py b/setup.py
index 608d19d..b4a4462 100644
--- a/setup.py
+++ b/setup.py
@@ -1,30 +1,34 @@
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',
- ]
+ 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',
+ 'PGPy>=0.4.2'
+ ],
+ dependency_links=[
+ 'https://github.com/J08nY/PGPy/archive/dev.zip#egg=PGPy-0.4.2'
+ ]
)