Skip to content

Commit

Permalink
v0.5.1 - add response module to setup packages #147 (#148)
Browse files Browse the repository at this point in the history
  • Loading branch information
treethought committed Nov 26, 2020
1 parent dffd481 commit c9db884
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions setup.py
Expand Up @@ -11,19 +11,26 @@

setup(
name="Flask-Assistant",
version="0.5.0",
version="0.5.1",
url="https://github.com/treethought/flask-assistant",
license="Apache 2.0",
author="Cam Sweeney",
author_email="cpsweene@gmail.com",
description="Framework for Building Virtual Assistants with API.AI",
description="Framework for Building Virtual Assistants with Dialogflow",
long_description=long_description,
long_description_content_type="text/markdown",
packages=["flask_assistant", "api_ai"],
packages=["flask_assistant", "flask_assistant.response", "api_ai"],
zip_safe=False,
include_package_data=True,
platforms="any",
install_requires=["Flask", "requests", "ruamel.yaml", "aniso8601", "google-auth"],
install_requires=[
"Flask",
"requests",
"ruamel.yaml",
"aniso8601",
"google-auth",
"dialogflow",
],
setup_requires=["pytest-runner"],
tests_require=["pytest"],
test_suite="tests",
Expand Down

0 comments on commit c9db884

Please sign in to comment.