-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (29 loc) · 1.02 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
import os
import sys
import setuptools
# Use the spec file to install the machinery to run this as a service.
# This setup is just used to register.
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(name = "milter", version = '1.0',
description="Anti-forgery, reputation tracking, anti-spam milter",
long_description=long_description,
author="Stuart Gathman",
author_email="[email protected]",
maintainer="Stuart D. Gathman",
maintainer_email="[email protected]",
license="GPL",
url="http://pythonhosted.org/milter/",
keywords = ['sendmail','milter'],
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: No Input/Output (Daemon)',
'Intended Audience :: System Administrators',
'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'
]
)