forked from googleapis/python-dialogflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (42 loc) · 1.56 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
"""A setup module for the GAPIC Dialogflow API library.
See:
https://packaging.python.org/en/latest/distributing.html
https://github.com/pypa/sampleproject
"""
from setuptools import setup, find_packages
import io
install_requires = [
'google-api-core[grpc]<2.0.0dev,>=0.1.4',
'googleapis-common-protos[grpc]>=1.5.2, <2.0dev',
]
with io.open('README.rst', 'r', encoding='utf-8') as readme_file:
long_description = readme_file.read()
setup(
name='dialogflow',
version='0.6.0',
author='Google LLC',
author_email='[email protected]',
classifiers=[
'Intended Audience :: Developers',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
],
description='Client library for the Dialogflow API',
include_package_data=True,
long_description=long_description,
install_requires=install_requires,
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*',
license='Apache 2.0',
packages=find_packages(),
url='https://github.com/dialogflow/dialogflow-python-client-v2',
)