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
|
#!/usr/bin/env python
from distutils.core import setup
import os
DESC = """spf-milter-python SPF milter for Sendmail and Postfix implemented in Python."""
setup(name='spf-milter-python',
version='0.8.9',
description=DESC,
author='Stuart D. Gathman',
author_email='stuart@bmsi.com',
url='http://sourceforge.net/projects/pymilter/',
license='GNU General Public License',
keywords = ['Sendmail','Postfix','spf','milter','email'],
scripts = ['spfmilter.py'],
data_files=[(os.path.join('etc', 'spf-milter-python'),
['spfmilter.cfg'])],
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: No Input/Output (Daemon)',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: English',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Communications :: Email :: Mail Transport Agents',
'Topic :: Communications :: Email :: Filters',
'Topic :: Software Development :: Libraries :: Python Applications'
]
)
|