[Python-checkins] python/nondist/sandbox/spambayes setup.py,NONE,1.1

montanaro@users.sourceforge.net montanaro@users.sourceforge.net
Tue, 27 Aug 2002 17:45:33 -0700


Update of /cvsroot/python/python/nondist/sandbox/spambayes
In directory usw-pr-cvs1:/tmp/cvs-serv29779

Added Files:
	setup.py 
Log Message:
trivial little setup.py file - i don't expect most people will be interested
in this, but it makes it a tad simpler to work with now that there are two
files



--- NEW FILE: setup.py ---
from distutils.core import setup

setup(
  name='spambayes', 
  scripts=['GBayes.py'],
  py_modules=['classifier']
  )