mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-03 01:50:59 +08:00
35 lines
874 B
Python
35 lines
874 B
Python
try:
|
|
from setuptools import setup
|
|
except ImportError:
|
|
from distutils.core import setup
|
|
|
|
setup(
|
|
name='gradio',
|
|
version='2.4.5',
|
|
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'],
|
|
license='Apache License 2.0',
|
|
keywords=['machine learning', 'visualization', 'reproducibility'],
|
|
install_requires=[
|
|
'numpy',
|
|
'pydub',
|
|
'matplotlib',
|
|
'pandas',
|
|
'pillow',
|
|
'ffmpy',
|
|
'markdown2',
|
|
'pycryptodome',
|
|
'requests',
|
|
'paramiko',
|
|
'analytics-python',
|
|
'Flask>=1.1.1',
|
|
'Flask-Cors>=3.0.8',
|
|
'flask-cachebuster',
|
|
'Flask-Login',
|
|
],
|
|
)
|