-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathsetup.py
58 lines (55 loc) · 1.73 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
"""
Flask-Assistant
-------------
Framework for Building Virtual Assistants with API.AI
"""
from setuptools import setup
with open("./README.md", "r") as f:
long_description = f.read()
setup(
name="Flask-Assistant",
version="0.5.4",
url="https://github.com/treethought/flask-assistant",
license="Apache 2.0",
author="Cam Sweeney",
author_email="[email protected]",
description="Framework for Building Virtual Assistants with Dialogflow",
long_description=long_description,
long_description_content_type="text/markdown",
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",
"google-cloud-dialogflow",
],
setup_requires=["pytest-runner"],
tests_require=["pytest"],
test_suite="tests",
extras_require={"HassRemote": ["homeassistant>=0.37.1"]},
entry_points={
"console_scripts": [
"schema=api_ai.cli:schema",
"query=api_ai.cli:query",
"templates=api_ai.cli:gen_templates",
"entities=api_ai.cli:entities",
"intents=api_ai.cli:intents",
"check=api_ai.cli:check",
]
},
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Framework :: Flask",
"Programming Language :: Python",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)