2019-02-19 16:26:09 +08:00
|
|
|
try:
|
|
|
|
from setuptools import setup
|
|
|
|
except ImportError:
|
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
setup(
|
2019-02-19 17:19:19 +08:00
|
|
|
name='gradio',
|
2021-04-27 02:53:55 +08:00
|
|
|
version='1.7.0',
|
2019-02-19 17:19:19 +08:00
|
|
|
include_package_data=True,
|
|
|
|
description='Python library for easily interacting with trained machine learning models',
|
|
|
|
author='Abubakar Abid',
|
|
|
|
author_email='a12d@stanford.edu',
|
2020-07-03 03:32:45 +08:00
|
|
|
url='https://github.com/gradio-app/gradio-UI',
|
2019-02-19 16:26:09 +08:00
|
|
|
packages=['gradio'],
|
2019-02-19 17:19:19 +08:00
|
|
|
keywords=['machine learning', 'visualization', 'reproducibility'],
|
2019-02-19 16:26:09 +08:00
|
|
|
install_requires=[
|
|
|
|
'numpy',
|
|
|
|
'requests',
|
2020-12-08 22:02:58 +08:00
|
|
|
'Flask>=1.1.1',
|
|
|
|
'Flask-Cors>=3.0.8',
|
2020-10-31 00:44:08 +08:00
|
|
|
'flask-cachebuster',
|
2021-03-19 12:00:22 +08:00
|
|
|
'Flask-Login',
|
2019-04-19 18:37:25 +08:00
|
|
|
'paramiko',
|
2019-06-22 10:02:14 +08:00
|
|
|
'scipy',
|
2019-07-24 05:40:05 +08:00
|
|
|
'IPython',
|
|
|
|
'scikit-image',
|
2020-07-09 02:03:49 +08:00
|
|
|
'analytics-python',
|
2020-12-04 03:47:08 +08:00
|
|
|
'pandas',
|
2021-01-28 08:16:35 +08:00
|
|
|
'ffmpy',
|
2021-03-12 03:08:32 +08:00
|
|
|
'librosa',
|
|
|
|
'colorama >= 0.3.9',
|
2021-03-26 01:50:17 +08:00
|
|
|
'markdown2',
|
2021-04-27 02:53:55 +08:00
|
|
|
'pycryptodome'
|
2019-02-19 16:26:09 +08:00
|
|
|
],
|
|
|
|
)
|