#
# AdvaS 0.2.3
#
# (C) 2002-2005 Frank Hofmann, Chemnitz, Germany
# mail fh@efho.de
#
# setup script

from distutils.core import setup

setup(
		name="advas",
		version="0.2.3",
		release="1mdk10.1",
		description="Python library for advanced search",
		author="Frank Hofmann",
		author_email="fh@efho.de",
		url="http://advas.sourceforge.net",
		packages=['advas'],
		long_description="AdvaS is a python module that provides methods and algorithms for high-level search and information retrieval as used in a search engine or a database optimizer.",
		license="GNU Public License (GPL)",
		classifiers = [
		    "Development Status :: 4 - Beta",
		    "Environment :: Console (Text Based)",
		    "Intended Audience :: Developers",
		    "Intended Audience :: Information Technology",
		    "Intended Audience :: Other Audience",
		    "Intended Audience :: Science/Research",
		    "License :: GNU General Public License (GPL)",
		    "Natural Language :: German",
		    "Natural Language :: English",
		    "Operating System :: BSD",
		    "Operating System :: Linux",
		    "Programming Language :: Python",
		    "Topic :: Artificial Intelligence",
		    "Topic :: Software Development",
		    "Topic :: Information Retrieval",
		    "Topic :: Text Processing"
		    ]
		)
