forked from virtualtam/django-dmarc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
42 lines (38 loc) · 1.35 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
"""Managing DMARC aggregate and feedback reports"""
from setuptools import setup
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='django-dmarc2',
version='0.5.2',
packages=['dmarc'],
include_package_data=True,
license='BSD',
description='Managing DMARC aggregate and feedback reports',
long_description=long_description,
url='https://github.com/webtweakers/django-dmarc',
download_url='https://pypi.python.org/pypi/django-dmarc2',
author='Alan Hicks',
author_email='ahicks@p-o.co.uk',
requires=['django'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 2.0',
'Framework :: Django :: 2.1',
'Framework :: Django :: 2.2',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Office/Business',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='dmarc email spf dkim',
)