forked from gradio-app/gradio
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
35 lines (34 loc) · 908 Bytes
/
setup.py
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
26
27
28
29
30
31
32
33
34
35
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='gradio',
version='2.5.2',
include_package_data=True,
description='Python library for easily interacting with trained machine learning models',
author='Abubakar Abid',
author_email='[email protected]',
url='https://github.com/gradio-app/gradio-UI',
packages=['gradio'],
license='Apache License 2.0',
keywords=['machine learning', 'visualization', 'reproducibility'],
install_requires=[
'numpy',
'pydub',
'matplotlib',
'pandas',
'pillow',
'ffmpy',
'markdown2',
'pycryptodome',
'requests',
'paramiko',
'analytics-python',
'Flask>=1.1.1',
'Flask-Cors>=3.0.8',
'flask-cachebuster',
'Flask-Login',
'Flask-Compress==1.10.1',
],
)