forked from gradio-app/gradio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (33 loc) · 922 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='gradio',
version='2.6.3',
include_package_data=True,
description='Python library for easily interacting with trained machine learning models',
author='Abubakar Abid, Ali Abid, Ali Abdalla, Dawood Khan, Ahsen Khaliq',
author_email='team@gradio.app',
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',
],
)