gradio/setup.py

29 lines
728 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',
2020-09-26 05:07:21 +08:00
version='1.2.4',
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-09-26 09:43:32 +08:00
'Flask==1.1.1',
'Flask-Cors==3.0.8',
2019-04-19 18:37:25 +08:00
'paramiko',
'scipy',
'IPython',
'scikit-image',
2020-07-09 02:03:49 +08:00
'analytics-python',
2020-08-11 05:22:27 +08:00
'pandas'
2019-02-19 16:26:09 +08:00
],
)