mirror of
https://github.com/gradio-app/gradio.git
synced 2024-11-27 01:40:20 +08:00
27 lines
675 B
Python
27 lines
675 B
Python
try:
|
|
from setuptools import setup
|
|
except ImportError:
|
|
from distutils.core import setup
|
|
|
|
setup(
|
|
name='gradio',
|
|
version='1.1.6',
|
|
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',
|
|
'paramiko',
|
|
'scipy',
|
|
'IPython',
|
|
'scikit-image',
|
|
'analytics-python',
|
|
'pandas'
|
|
],
|
|
)
|