forked from ahmadfaizalbh/Chatbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·33 lines (30 loc) · 1.17 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
#!/usr/bin/env python
from setuptools import setup
version = __import__('chatbot').__version__
setup(
name='chatbotAI',
version=version,
author="Ahmad Faizal B H",
author_email="[email protected]",
url="https://github.com/ahmadfaizalbh/Chatbot",
description="A chatbot AI engine is a chatbot builder platform that provids both bot intelligence and"
" chat handler with minimal codding",
long_description=open("README.rst").read(),
packages=['chatbot', 'chatbot.spellcheck', 'chatbot.substitution'],
license='MIT',
keywords='chatbot ai engine and chat builder platform',
platforms=["Windows", "Linux", "Solaris", "Mac OS-X", "Unix"],
package_dir={
'chatbot': 'chatbot',
'chatbot.spellcheck': 'chatbot/spellcheck',
'chatbot.substitution': 'chatbot/substitution'
},
include_package_data=True,
package_data={"chatbot": ["local/en/default.template",
"local/en/words.txt",
"local/en/substitutions.json",
"local/pt-br/default.template"]},
install_requires=[
'requests',
]
)