-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·26 lines (21 loc) · 929 Bytes
/
setup.py
File metadata and controls
executable file
·26 lines (21 loc) · 929 Bytes
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
#!/usr/bin/python3
from setuptools import setup
long_description = """pythonfilter is a collection of useful filters for the Courier MTA,
and a framework for developing new filters in Python.
pythonfilter can be used to filter spam and viruses, as well as
implement other local mail policies.
"""
setup(name="courier-pythonfilter",
version="3.0.6",
description="Python filtering architecture for the Courier MTA.",
long_description=long_description,
author="Gordon Messmer",
author_email="gordon@dragonsdawn.net",
url="https://github.com/gordonmessmer/courier-pythonfilter",
license="GPL",
scripts=['pythonfilter', 'pythonfilter-quarantine', 'dropmsg'],
packages=['courier', 'pythonfilter'],
package_dir={'pythonfilter': 'filters/pythonfilter'},
data_files=[('/etc/', ['pythonfilter.conf',
'pythonfilter-modules.conf'])]
)