gradio/setup.py

25 lines
625 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-06-18 12:02:39 +08:00
version='0.9.2',
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',
'requests',
2019-04-19 18:37:25 +08:00
'paramiko',
'scipy',
'IPython',
'scikit-image',
2019-02-19 16:26:09 +08:00
],
)