mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-21 02:19:59 +08:00
35 lines
871 B
Python
35 lines
871 B
Python
try:
|
|
from setuptools import setup
|
|
except ImportError:
|
|
from distutils.core import setup
|
|
|
|
setup(
|
|
name='gradio',
|
|
version='1.7.0',
|
|
include_package_data=True,
|
|
description='Python library for easily interacting with trained machine learning models',
|
|
author='Abubakar Abid',
|
|
author_email='a12d@stanford.edu',
|
|
url='https://github.com/gradio-app/gradio-UI',
|
|
packages=['gradio'],
|
|
keywords=['machine learning', 'visualization', 'reproducibility'],
|
|
install_requires=[
|
|
'numpy',
|
|
'requests',
|
|
'Flask>=1.1.1',
|
|
'Flask-Cors>=3.0.8',
|
|
'flask-cachebuster',
|
|
'Flask-Login',
|
|
'paramiko',
|
|
'scipy',
|
|
'scikit-image',
|
|
'analytics-python',
|
|
'pandas',
|
|
'ffmpy',
|
|
'librosa',
|
|
'colorama >= 0.3.9',
|
|
'markdown2',
|
|
'pycryptodome'
|
|
],
|
|
)
|