forked from andelf/PyAIML
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (30 loc) · 1.28 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Command to build:
from distutils.core import setup
import glob
package_prefix = "Lib/site-packages/aiml"
setup(name="PyAIML",
version="0.8.6",
author="Cort Stratton",
author_email="[email protected]",
maintainer="Cort Stratton",
maintainer_email="[email protected]",
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")),
],
)