#!/usr/local/Python25/bin/python # _*_ coding: utf-8 _*_ # Copyright (C) 2007 Ayukawa Hiroshi from distutils.core import setup setup( name="googlebayes", version="1.0", description="Naive Bayes Filter with learning by Google search results.", author="Hiroshi Ayukawa", author_email="ayukawa.hiroshi@gmail.com", packages=["googlebayes"], scripts=["scripts/gblearn.py", "scripts/gbbayes.py"] )