diff options
| -rw-r--r-- | MANIFEST.in | 6 | ||||
| -rwxr-xr-x | setup.py | 2 | ||||
| -rw-r--r-- | src/mailman_pgp/__init__.py | 2 |
3 files changed, 9 insertions, 1 deletions
diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..1294baf --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,6 @@ +include *.py +include COPYING MANIFEST.in +recursive-include src *.eml *.asc +global-include *.cfg *.ini +prune .tox +prune dist
\ No newline at end of file @@ -32,6 +32,8 @@ A plugin for GNU Mailman that adds encrypted mailing lists via PGP/MIME.""", keywords='email pgp', packages=find_packages('src'), package_dir={'': 'src'}, + include_package_data=True, + zip_safe=False, python_requires='>=3.5', install_requires=[ 'mailman>=3.2.0a1', diff --git a/src/mailman_pgp/__init__.py b/src/mailman_pgp/__init__.py index cfc93d6..06e6c5c 100644 --- a/src/mailman_pgp/__init__.py +++ b/src/mailman_pgp/__init__.py @@ -3,4 +3,4 @@ from distutils.version import LooseVersion __author__ = 'Jan Jancar' __copyright__ = 'Copyright (C) 2017 Jan Jancar' __license__ = 'GPLv3' -__version__ = str(LooseVersion('0.2.0')) +__version__ = str(LooseVersion('0.2.1')) |
