forked from ahmadfaizalbh/Chatbot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·24 lines (23 loc) · 919 Bytes
/
setup.py
File metadata and controls
executable file
·24 lines (23 loc) · 919 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python
# from distutils.core import setup
from setuptools import setup
setup(
name='chatbotAI',
version='0.2.1.0',
author="Ahmad Faizal B H",
author_email="ahmadfaizalbh726@gmail.com",
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'],
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'},
include_package_data=True,
package_data={"chatbot": ["default.template", "spellcheck/words.txt"]},
install_requires=[
'requests',
]
)