gradio/setup.py

26 lines
653 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',
2019-03-26 03:19:31 +08:00
version='0.4.1',
2019-02-19 17:19:19 +08:00
include_package_data=True,
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',
2019-02-19 16:26:09 +08:00
packages=['gradio'],
2019-02-19 17:19:19 +08:00
keywords=['machine learning', 'visualization', 'reproducibility'],
2019-02-19 16:26:09 +08:00
install_requires=[
'numpy',
'websockets',
'nest_asyncio',
2019-02-19 16:42:53 +08:00
'beautifulsoup4',
2019-02-19 16:26:09 +08:00
'Pillow',
'requests',
'psutil',
],
)