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',
|
2019-04-20 15:20:50 +08:00
|
|
|
version='0.7.5',
|
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',
|
|
|
|
url='https://github.com/abidlabs/gradio',
|
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',
|
2019-02-19 16:42:53 +08:00
|
|
|
'beautifulsoup4',
|
2019-02-19 16:26:09 +08:00
|
|
|
'Pillow',
|
|
|
|
'requests',
|
|
|
|
'psutil',
|
2019-04-19 18:37:25 +08:00
|
|
|
'paramiko',
|
2019-02-19 16:26:09 +08:00
|
|
|
],
|
|
|
|
)
|