Skip to content

Commit c9db884

Browse files
authored
v0.5.1 - add response module to setup packages #147 (#148)
1 parent dffd481 commit c9db884

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

setup.py

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,26 @@
1111

1212
setup(
1313
name="Flask-Assistant",
14-
version="0.5.0",
14+
version="0.5.1",
1515
url="https://github.com/treethought/flask-assistant",
1616
license="Apache 2.0",
1717
author="Cam Sweeney",
1818
author_email="cpsweene@gmail.com",
19-
description="Framework for Building Virtual Assistants with API.AI",
19+
description="Framework for Building Virtual Assistants with Dialogflow",
2020
long_description=long_description,
2121
long_description_content_type="text/markdown",
22-
packages=["flask_assistant", "api_ai"],
22+
packages=["flask_assistant", "flask_assistant.response", "api_ai"],
2323
zip_safe=False,
2424
include_package_data=True,
2525
platforms="any",
26-
install_requires=["Flask", "requests", "ruamel.yaml", "aniso8601", "google-auth"],
26+
install_requires=[
27+
"Flask",
28+
"requests",
29+
"ruamel.yaml",
30+
"aniso8601",
31+
"google-auth",
32+
"dialogflow",
33+
],
2734
setup_requires=["pytest-runner"],
2835
tests_require=["pytest"],
2936
test_suite="tests",

0 commit comments

Comments
 (0)