forked from aichaos/rivescript-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 1 KB
/
setup.py
File metadata and controls
27 lines (24 loc) · 1 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
# rivescript-python setup.py
import rivescript
from setuptools import setup
setup(
name = 'python-rivescript',
version = rivescript.__version__,
description = 'A Chatterbot Scripting Language',
long_description = 'A scripting language to make it easy to write responses for a chatterbot.',
author = 'Noah Petherbridge',
author_email = '[email protected]',
url = 'https://github.com/kirsle/rivescript-python',
license = 'Dual licensed; GPLv2',
packages = ['rivescript'],
keywords = 'bot chatbot chatterbot ai aiml chatscript buddyscript',
classifiers = [
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
install_requires = [ 'setuptools' ],
)
# vim:expandtab