-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* apai.ai is now dialogflow * introduce dialogflow * base examples * cros headers * instalation procedures and tests * travis ci * repo updates * dialogflow version update * tests path * package version and build status * update setup classifier * summary update
- Loading branch information
Showing
37 changed files
with
348 additions
and
365 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
language: python | ||
|
||
python: | ||
- '2.7' | ||
- '3.4' | ||
- '3.5' | ||
|
||
install: | ||
- pip install coveralls | ||
- pip install -r requirements.txt | ||
|
||
script: | ||
- python django_dialogflow/manage.py test django_dialogflow.tests | ||
|
||
after_success: | ||
- coveralls |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
""" | ||
Django Dialogflow chat agent | ||
""" | ||
__version__ = '0.0.1' | ||
__author__ = 'Mallikarjunarao Kosuri' | ||
__email__ = 'malli.kv2@gmail.com' | ||
__url__ = 'https://github.com/vkosuri/django-dialogflow' |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
from django.apps import AppConfig | ||
|
||
|
||
class DjangoDialogflowConfig(AppConfig): | ||
|
||
name = 'django_dialogflow' | ||
label = 'django_dialogflow' | ||
verbose_name = 'Django Dialogflow' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.