forked from gradio-app/gradio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 658 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 658 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='gradio',
version='1.0.4',
include_package_data=True,
description='Python library for easily interacting with trained machine learning models',
author='Abubakar Abid',
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',
],
)