From 1d10bb172fc456a0da5adbf1209f94bf567849db Mon Sep 17 00:00:00 2001
From: Stuart Gathman <stuart@gathman.org>
Date: Tue, 31 May 2005 20:39:16 +0000
Subject: [PATCH] Create Milter package.

---
 MANIFEST.in | 1 +
 setup.py    | 6 ++++--
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/MANIFEST.in b/MANIFEST.in
index a7faa28..ec107b2 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -15,6 +15,7 @@ include spfquery.py
 include test.py
 include sample.py
 include test/*
+include Milter/*.py
 include *.spec
 include start.sh
 include milter.rc
diff --git a/setup.py b/setup.py
index 775cee7..2d80f2f 100644
--- a/setup.py
+++ b/setup.py
@@ -26,7 +26,8 @@ querying SPF records.
 	maintainer_email="stuart@bmsi.com",
 	license="GPL",
 	url="http://www.bmsi.com/python/milter.html",
-	py_modules=["Milter","mime","spf"],
+	py_modules=["mime","spf"],
+	packages = ['Milter'],
 	ext_modules=[
 	  Extension("milter", ["miltermodule.c"],
 	    libraries=libs,
@@ -42,6 +43,7 @@ querying SPF records.
 	  'Natural Language :: English',
 	  'Operating System :: POSIX',
 	  'Programming Language :: Python',
-	  'Topic :: Communications :: Email :: Mail Transport Agents'
+	  'Topic :: Communications :: Email :: Mail Transport Agents',
+	  'Topic :: Communications :: Email :: Filters'
 	]
 )
-- 
GitLab