From 6e82c5964e31f3cc937911069709af9830071338 Mon Sep 17 00:00:00 2001 From: Aleksey Lim Date: Fri, 25 Dec 2009 15:34:56 +0000 Subject: Use only one directory level for sources --- (limited to 'bot/PyAIML-0.8.5/setup.py') diff --git a/bot/PyAIML-0.8.5/setup.py b/bot/PyAIML-0.8.5/setup.py new file mode 100755 index 0000000..3cc058a --- /dev/null +++ b/bot/PyAIML-0.8.5/setup.py @@ -0,0 +1,34 @@ +# Command to build: +from distutils.core import setup +import glob + +package_prefix = "Lib/site-packages/aiml" + +setup(name="PyAIML", + version="0.8.5", + author="Cort Stratton", + author_email="cort@users.sourceforge.net", + maintainer="Cort Stratton", + maintainer_email="cort@users.sourceforge.net", + + description="An interpreter package for AIML, the Artificial Intelligence Markup Language", + long_description="""PyAIML implements an interpreter for AIML, the Artificial Intelligence +Markup Language developed by Dr. Richard Wallace of the A.L.I.C.E. Foundation. +It can be used to implement a conversational AI program.""", + url="http://pyaiml.sourceforge.net/", + platforms=["any"], + classifiers=["Development Status :: 3 - Alpha", + "Environment :: Console", + "Intended Audience :: Developers", + "Programming Language :: Python", + "Operating System :: OS Independent", + "Topic :: Communications :: Chat", + "Topic :: Scientific/Engineering :: Artificial Intelligence" + ], + + packages=["aiml"], + data_files=[ + (package_prefix, glob.glob("aiml/self-test.aiml")), + (package_prefix, glob.glob("*.txt")), + ], +) -- cgit v0.9.1