gradio/setup.py

33 lines
863 B
Python
Raw Normal View History

2019-02-19 16:26:09 +08:00
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
2019-02-19 17:19:19 +08:00
name='gradio',
2021-12-28 03:24:42 +08:00
version='2.6.3',
2019-02-19 17:19:19 +08:00
include_package_data=True,
description='Python library for easily interacting with trained machine learning models',
2021-12-23 23:16:53 +08:00
author='Abubakar Abid, Ali Abid, Ali Abdalla, Dawood Khan, Ahsen Khaliq',
author_email='team@gradio.app',
2020-07-03 03:32:45 +08:00
url='https://github.com/gradio-app/gradio-UI',
2019-02-19 16:26:09 +08:00
packages=['gradio'],
2021-06-19 02:05:38 +08:00
license='Apache License 2.0',
2019-02-19 17:19:19 +08:00
keywords=['machine learning', 'visualization', 'reproducibility'],
2019-02-19 16:26:09 +08:00
install_requires=[
2021-12-28 08:25:21 +08:00
'analytics-python',
'fastapi',
'ffmpy',
'markdown2',
2021-04-30 11:57:17 +08:00
'matplotlib',
2021-12-28 08:25:21 +08:00
'numpy',
2020-12-04 03:47:08 +08:00
'pandas',
2021-12-28 08:25:21 +08:00
'paramiko',
2021-04-30 11:30:46 +08:00
'pillow',
2021-04-30 11:57:17 +08:00
'pycryptodome',
2021-12-28 08:25:21 +08:00
'pydub',
2021-04-30 11:41:51 +08:00
'requests',
2021-12-30 10:36:15 +08:00
# python-multipart
2019-02-19 16:26:09 +08:00
],
)