-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathsetup.py
More file actions
63 lines (57 loc) · 2.14 KB
/
setup.py
File metadata and controls
63 lines (57 loc) · 2.14 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
'''
Build the aiml Py2/Py3 package
'''
from setuptools import setup
import io
with io.open('aiml/constants.py', encoding='utf-8') as fid:
for line in fid:
if line.startswith('VERSION'):
VERSION = line.strip().split()[-1][1:-1]
break
setup(name="aiml",
version=VERSION,
author="Douglas Blank",
author_email="doug.blank@gmail.com",
description="An interpreter package for AIML, the Artificial Intelligence Markup Language",
long_description="""aiml 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.
Forked from:
* 0.9.1 https://github.com/paulovn/python-aiml
* 0.8.6 https://github.com/cdwfs/pyaiml
PyAIML (c) Cort Stratton
""",
url="https://github.com/calysto/aiml",
platforms=["any"],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Communications :: Chat",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
],
install_requires = ['setuptools'],
packages=["aiml", 'aiml.script'],
include_package_data = True,
package_data={'aiml': [
'botdata/standard/*.aiml',
'botdata/standard/*.xml',
'botdata/alice/*.aiml',
'botdata/alice/*.xml',
]},
entry_points = {'console_scripts': [
'aiml-validate = aiml.script.aimlvalidate:main',
'aiml-bot = aiml.script.bot:main',
]},
test_suite = 'test.__main__.load_tests',
)