forked from sdgathman/pyspf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·37 lines (33 loc) · 1.25 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
#!/usr/bin/python
from distutils.core import setup
import sys
DESC = """SPF (Sender Policy Framework) implemented in Python."""
setup(name='pyspf',
version='2.1',
description=DESC,
author='Terence Way',
author_email='[email protected]',
maintainer="Stuart D. Gathman",
maintainer_email="[email protected]",
url='https://github.com/sdgathman/pyspf/',
license='Python Software Foundation License',
py_modules=['spf'], packages = ['SPF'],
keywords = ['spf','email','forgery'],
scripts = ['type99.py','spfquery.py'],
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: No Input/Output (Daemon)',
'Intended Audience :: Developers',
'License :: OSI Approved :: Python Software Foundation License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Communications :: Email :: Mail Transport Agents',
'Topic :: Communications :: Email :: Filters',
'Topic :: Internet :: Name Service (DNS)',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)
if sys.version_info < (2, 6):
raise Exception("pyspf 2.0.6 and later requires at least python2.6.")