forked from treethought/flask-assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (47 loc) · 1.49 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
"""
Flask-Assistant
-------------
Framework for Building Virtual Assistants with API.AI
"""
from setuptools import setup
setup(
name='Flask-Assistant',
version='0.2.9',
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 API.AI',
long_description=__doc__,
packages=['flask_assistant', 'api_ai'],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
'Flask',
'requests',
'six',
'ruamel.yaml'
],
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'
]
)