gradio/setup.py
2021-12-30 11:12:09 +00:00

35 lines
922 B
Python

try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='gradio',
version='2.6.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',
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',
],
)