forked from gradio-app/gradio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (33 loc) · 904 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.7.5.2",
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="[email protected]",
url="https://github.com/gradio-app/gradio-UI",
packages=["gradio"],
license="Apache License 2.0",
keywords=["machine learning", "visualization", "reproducibility"],
install_requires=[
"analytics-python",
"aiohttp",
"fastapi",
"ffmpy",
"markdown2",
"matplotlib",
"numpy",
"pandas",
"paramiko",
"pillow",
"pycryptodome",
"python-multipart",
"pydub",
"requests",
"uvicorn",
],
)