Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmadfaizalbh authored Nov 5, 2020
1 parent 1a8ec89 commit d6a3d6b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@
version = chatbot.__version__
LANGUAGE_SUPPORT = chatbot.LANGUAGE_SUPPORT
package_data = []

with open("README.md", "r") as fh:
long_description = fh.read()

for language in LANGUAGE_SUPPORT:
package_data.extend([
"local/%s/default.template" % language,
Expand All @@ -20,7 +24,8 @@
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(),
long_description=long_description,
long_description_content_type="text/markdown",
packages=['chatbot', 'chatbot.spellcheck', 'chatbot.substitution'],
license='MIT',
keywords='chatbot ai engine and chat builder platform',
Expand Down

0 comments on commit d6a3d6b

Please sign in to comment.