mirror of
https://github.com/gradio-app/gradio.git
synced 2024-11-21 01:01:05 +08:00
25 lines
635 B
Python
25 lines
635 B
Python
try:
|
|
from setuptools import setup
|
|
except ImportError:
|
|
from distutils.core import setup
|
|
|
|
setup(
|
|
name = 'gradio',
|
|
version = '0.1.0',
|
|
description = 'Python library for easily interacting with trained machine learning models',
|
|
author = 'Abubakar Abid',
|
|
author_email = 'a12d@stanford.edu',
|
|
url = 'https://github.com/abidlabs/gradio',
|
|
packages=['gradio'],
|
|
keywords = ['machine learning', 'visualization', 'reproducibility'],
|
|
install_requires=[
|
|
'numpy',
|
|
'websockets',
|
|
'nest_asyncio',
|
|
'beautifulsoup4'
|
|
'Pillow',
|
|
'requests',
|
|
'psutil',
|
|
],
|
|
)
|