forked from kazarazat/password-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·28 lines (25 loc) · 1.03 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
# rivescript-python setup.py
import rivescript
from setuptools import setup
setup(
name = 'rivescript',
version = rivescript.__version__,
description = 'A rivescript bot specializing in password generation',
long_description = 'A scripting language to make it easy to write responses for a chatterbot.',
author = 'Kaza Razat',
author_email = '[email protected]',
url = 'https://github.com/aichaos/rivescript-python',
license = 'MIT',
packages = ['rivescript'],
keywords = ['bot', 'chatbot', 'chatterbot', 'ai', 'aiml',
'chatscript', 'buddyscript'],
classifiers = [
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
install_requires = [ 'setuptools', 'six' ],
)
# vim:expandtab