From 27411a3b557c32701a16a16e376dd65a81aa6e9f Mon Sep 17 00:00:00 2001
From: riverliuintel <river.liu@intel.com>
Date: Wed, 5 Feb 2020 15:36:12 +0800
Subject: [PATCH] Add the Python3.7 support for pipy

---
 api/setup.py | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/api/setup.py b/api/setup.py
index 3322768..ffc8eab 100644
--- a/api/setup.py
+++ b/api/setup.py
@@ -31,7 +31,7 @@
     long_description=long_description,
     long_description_content_type='text/markdown',
     url='https://github.com/IntelAI/tools',
-    packages=find_packages(exclude=['bin', 'config', 'models', 'tests', 'tools']),
+    packages=find_packages(exclude=['docker', 'config', 'models', 'tests', 'tools']),
     classifiers=[
         'Development Status :: 1.0 Beta',
         'License :: OSI Approbed :: Apache License 2.0',
@@ -39,7 +39,8 @@
         'Programming Language :: Python :: 3.4',
         'Programming Language :: Python :: 3.5',
         'Programming Language :: Python :: 3.6',
+        'Programming Language :: Python :: 3.7',
     ],
     keywords='IntelĀ® AI Quantization Tools for Tensorflow*',
-    python_requires='>=3.4, !=3.1.*, !=3.2.*, !=3.3.*, <3.7'
+    python_requires='>=3.4, !=3.1.*, !=3.2.*, !=3.3.*, <3.8'
 )