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-11-10 23:39:13 +08:00
|
|
|
version='2.4.5',
|
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'],
|
2021-06-19 02:05:38 +08:00
|
|
|
license='Apache License 2.0',
|
2019-02-19 17:19:19 +08:00
|
|
|
keywords=['machine learning', 'visualization', 'reproducibility'],
|
2019-02-19 16:26:09 +08:00
|
|
|
install_requires=[
|
|
|
|
'numpy',
|
2021-10-06 03:23:23 +08:00
|
|
|
'pydub',
|
2021-04-30 11:57:17 +08:00
|
|
|
'matplotlib',
|
2020-12-04 03:47:08 +08:00
|
|
|
'pandas',
|
2021-04-30 11:30:46 +08:00
|
|
|
'pillow',
|
2021-01-28 08:16:35 +08:00
|
|
|
'ffmpy',
|
2021-03-26 01:50:17 +08:00
|
|
|
'markdown2',
|
2021-04-30 11:57:17 +08:00
|
|
|
'pycryptodome',
|
2021-04-30 11:41:51 +08:00
|
|
|
'requests',
|
|
|
|
'paramiko',
|
|
|
|
'analytics-python',
|
|
|
|
'Flask>=1.1.1',
|
|
|
|
'Flask-Cors>=3.0.8',
|
|
|
|
'flask-cachebuster',
|
|
|
|
'Flask-Login',
|
2019-02-19 16:26:09 +08:00
|
|
|
],
|
|
|
|
)
|