Added the setup script and the MANIFEST

This commit is contained in:
Jay Deiman 2011-12-12 14:11:11 -06:00
parent d8ffd4a695
commit 67032c5e52
2 changed files with 12 additions and 0 deletions

2
MANIFEST.in Normal file
View File

@ -0,0 +1,2 @@
recusive-include examples *.py
include LICENSE

View File

@ -15,4 +15,14 @@
# You should have received a copy of the GNU General Public License
# along with python-libmilter. If not, see <http://www.gnu.org/licenses/>.
from distutils.core import setup
from libmilter import __version__ as lmversion
setup(name='python-libmilter' ,
version=lmversion ,
author='Jay Deiman' ,
author_email='admin@splitstreams.com' ,
url='http://stuffivelearned.org/doku.php?id=programming:python:python-libmilter' ,
description='A pure python implementation of libmilter' ,
py_modules=['libmilter'] ,
)