13
13
# See the License for the specific language governing permissions and
14
14
# limitations under the License.
16
from distutils.core import setup
16
from setuptools import setup
18
18
setup(name='authres',
20
description='authres - Authentication Results Header Module',
21
author='Julian Mehnle, Scott Kitterman',
22
author_email='julian@mehnle.net',
23
url='https://launchpad.net/authentication-results-python',
25
packages = ['authres',],
26
package_data = {'authres': ['tests']},
27
keywords = ['dkim', 'spf', 'dmarc', 'email', 'authentication', 'rfc5451', 'rfc7001', 'rfc7601'],
20
description='authres - Authentication Results Header Module',
21
author='Julian Mehnle, Scott Kitterman',
22
author_email='julian@mehnle.net',
23
url='https://launchpad.net/authentication-results-python',
25
packages = ['authres',],
26
include_package_data=True,
27
package_data = {'authres': ['tests']},
28
keywords = ['dkim', 'spf', 'dmarc', 'email', 'authentication', 'rfc5451', 'rfc7001', 'rfc7601'],
29
30
'Development Status :: 5 - Production/Stable',
30
31
'Environment :: No Input/Output (Daemon)',
31
32
'Intended Audience :: Developers',
37
38
'Topic :: Communications :: Email :: Mail Transport Agents',
38
39
'Topic :: Communications :: Email :: Filters',
39
40
'Topic :: Software Development :: Libraries :: Python Modules',