2019-02-19 16:26:09 +08:00
|
|
|
try:
|
|
|
|
from setuptools import setup
|
|
|
|
except ImportError:
|
|
|
|
from distutils.core import setup
|
2022-04-27 05:26:54 +08:00
|
|
|
from pathlib import Path
|
|
|
|
|
|
|
|
this_directory = Path(__file__).parent
|
2022-05-24 05:38:53 +08:00
|
|
|
long_description = (this_directory / "README.md").read_text(encoding='utf8')
|
2022-04-27 05:26:54 +08:00
|
|
|
|
2022-06-14 08:57:45 +08:00
|
|
|
print(long_description)
|
|
|
|
|
2019-02-19 16:26:09 +08:00
|
|
|
setup(
|
2022-01-21 21:44:12 +08:00
|
|
|
name="gradio",
|
2022-06-08 06:54:14 +08:00
|
|
|
version="3.0.13",
|
2019-02-19 17:19:19 +08:00
|
|
|
include_package_data=True,
|
2022-01-21 21:44:12 +08:00
|
|
|
description="Python library for easily interacting with trained machine learning models",
|
2022-04-27 05:26:54 +08:00
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type='text/markdown',
|
2022-03-04 14:15:30 +08:00
|
|
|
author="Abubakar Abid, Ali Abid, Ali Abdalla, Dawood Khan, Ahsen Khaliq, Pete Allen, Ömer Faruk Özdemir",
|
2022-01-21 21:44:12 +08:00
|
|
|
author_email="team@gradio.app",
|
2022-05-25 15:12:24 +08:00
|
|
|
url="https://github.com/gradio-app/gradio",
|
2022-01-21 21:44:12 +08:00
|
|
|
packages=["gradio"],
|
|
|
|
license="Apache License 2.0",
|
|
|
|
keywords=["machine learning", "visualization", "reproducibility"],
|
2019-02-19 16:26:09 +08:00
|
|
|
install_requires=[
|
2022-01-21 21:44:12 +08:00
|
|
|
"analytics-python",
|
|
|
|
"aiohttp",
|
|
|
|
"fastapi",
|
|
|
|
"ffmpy",
|
2022-02-04 00:05:52 +08:00
|
|
|
"markdown-it-py[linkify,plugins]",
|
2022-01-21 21:44:12 +08:00
|
|
|
"matplotlib",
|
|
|
|
"numpy",
|
2022-02-23 04:28:42 +08:00
|
|
|
"orjson",
|
2022-01-21 21:44:12 +08:00
|
|
|
"pandas",
|
|
|
|
"paramiko",
|
|
|
|
"pillow",
|
|
|
|
"pycryptodome",
|
|
|
|
"python-multipart",
|
|
|
|
"pydub",
|
|
|
|
"requests",
|
|
|
|
"uvicorn",
|
2022-06-15 03:18:59 +08:00
|
|
|
"Jinja2",
|
|
|
|
"fsspec",
|
2019-02-19 16:26:09 +08:00
|
|
|
],
|
2022-05-25 15:12:24 +08:00
|
|
|
entry_points={
|
|
|
|
'console_scripts': ['gradio=gradio.reload:run_in_reload_mode']
|
2022-05-24 05:38:53 +08:00
|
|
|
},
|
2022-06-08 03:00:29 +08:00
|
|
|
python_requires='>=3.7',
|
2019-02-19 16:26:09 +08:00
|
|
|
)
|