gradio/setup.py

33 lines
822 B
Python
Raw Normal View History

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-03-03 04:41:08 +08:00
version='1.6.3',
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',
'flask-cachebuster',
2021-01-20 01:15:09 +08:00
'Flask-BasicAuth',
2019-04-19 18:37:25 +08:00
'paramiko',
'scipy',
'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',
2020-12-04 03:47:08 +08:00
'markdown2'
2019-02-19 16:26:09 +08:00
],
)