diff options
| author | J08nY | 2017-08-11 18:17:31 +0200 |
|---|---|---|
| committer | J08nY | 2017-08-11 18:17:31 +0200 |
| commit | 9cb00a1ea2f6d9bafeceb664aed4123764d9e81e (patch) | |
| tree | c639652a1b29242e2d13ca4c61df2dadf30bdbb9 | |
| parent | eae002356830e872c9266f04490ebd51db5004ee (diff) | |
| download | mailman-pgp-0.2.1.tar.gz mailman-pgp-0.2.1.tar.zst mailman-pgp-0.2.1.zip | |
| -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')) |
