Skip to content

Commit

Permalink
fix setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahmad Faizal B H committed Aug 22, 2020
1 parent 36b47e5 commit 7d48a72
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion django_chatbot/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = (0, 0, 2)
VERSION = (0, 0, 2, 1)
__version__ = '.'.join(map(str, VERSION))

default_app_config = 'django.chatbot.apps.DjangoChatBotConfig'
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,12 @@
long_description=open('README.rst').read(),
license='MIT',
keywords='django chatbot ai webhook and django wrapper for ChatBotAI',
packages=['django.chatbot', 'django.chatbot.migrations'],
package_dir={'django.chatbot': 'django_chatbot', 'django.chatbot.migrations': 'django_chatbot/migrations'},
packages=['django.chatbot', 'django.chatbot.migrations', 'django.chatbot.views'],
package_dir={
'django.chatbot': 'django_chatbot',
'django.chatbot.migrations': 'django_chatbot/migrations',
'django.chatbot.views': 'django_chatbot/views'
},
include_package_data=True,
package_data={},
zip_safe=True,
Expand Down

0 comments on commit 7d48a72

Please sign in to comment.