58 lines
2.1 KiB
Python
58 lines
2.1 KiB
Python
#! /usr/bin/python
|
|
# dkimpy-milter: A DKIM signing/verification Milter application
|
|
# Author: Scott Kitterman <scott@kitterman.com>
|
|
# Copyright 2018 Scott Kitterman
|
|
""" This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA."""
|
|
|
|
from setuptools import setup
|
|
|
|
description = "Domain Keys Identified Mail (DKIM) signing/verifying milter for Postfix/Sendmail."
|
|
|
|
setup(
|
|
name='dkimpy-milter',
|
|
version='0',
|
|
author='Scott Kitterman',
|
|
author_email='scott@kitterman.com',
|
|
url='https://launchpad.net/dkimpy-milter',
|
|
description=description,
|
|
download_url = "https://pypi.python.org/pypi/dkimpy-milter",
|
|
classifiers= [
|
|
'Development Status :: 3 - Alpha',
|
|
'Environment :: No Input/Output (Daemon)',
|
|
'Intended Audience :: System Administrators',
|
|
'License :: OSI Approved :: GNU General Public License (GPL)',
|
|
'Natural Language :: English',
|
|
'Operating System :: POSIX',
|
|
'Programming Language :: Python :: 2 :: Only',
|
|
'Topic :: Communications :: Email :: Mail Transport Agents',
|
|
'Topic :: Communications :: Email :: Filters',
|
|
'Topic :: Security',
|
|
],
|
|
packages=['dkimpy_milter'],
|
|
entry_points = {
|
|
'console_scripts' : [
|
|
'dkimpy-milter = dkimpy_milter.__init__:main',
|
|
],
|
|
},
|
|
package_data={'dkimpy_milter': [
|
|
'templates/*',
|
|
'data/*',
|
|
]},
|
|
|
|
install_requires = ['dkimpy', 'pymilter', 'authres'],
|
|
|
|
zip_safe = False,
|
|
)
|