forked from ONSEIGmbH/flask-dialogflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (33 loc) · 995 Bytes
/
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
# -*- coding: utf-8 -*-
#
# Copyright (c) ONSEI GmbH
from setuptools import setup, find_packages
from flask_onsei import __version__
with open('README.md') as fp:
long_description = fp.read()
setup(
name='flask-ONSEI',
version=__version__,
packages=find_packages(),
url='https://github.com/ONSEIGmbH/flask-ONSEI',
python_requires='>3.6',
license='Proprietary',
author='ONSEI GmbH',
author_email='it@onsei.de',
description='A helper library for Actions-on-Google/Dialogflow agents.',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=[
'dataclasses==0.6;python_version<"3.7"',
'Flask==1.0.2',
'marshmallow[reco]==3.0.0rc5', # Marshmallow with recommended deps
'marshmallow-enum==1.4.1',
'PyYAML==5.1',
'tabulate==0.8.3',
],
entry_points={
'flask.commands': [
'agent=flask_onsei.cli:agent_cli'
],
},
)