mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-03 01:50:59 +08:00
37 lines
993 B
Python
37 lines
993 B
Python
try:
|
|
from setuptools import setup
|
|
except ImportError:
|
|
from distutils.core import setup
|
|
|
|
setup(
|
|
name="gradio",
|
|
version="2.9.4",
|
|
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, Pete Allen, Ömer Faruk Özdemir",
|
|
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=[
|
|
"analytics-python",
|
|
"aiohttp",
|
|
"fastapi",
|
|
"ffmpy",
|
|
"markdown-it-py[linkify,plugins]",
|
|
"matplotlib",
|
|
"numpy",
|
|
"orjson",
|
|
"pandas",
|
|
"paramiko",
|
|
"pillow",
|
|
"pycryptodome",
|
|
"python-multipart",
|
|
"pydub",
|
|
"requests",
|
|
"uvicorn",
|
|
"Jinja2"
|
|
],
|
|
)
|