tensorwatch/setup.py

32 строки
997 B
Python

# Copyright (c) Microsoft Corporation.
# Licensed under the MIT license.
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="tensorwatch",
version="0.9.1",
author="Shital Shah",
author_email="shitals@microsoft.com",
description="Interactive Realtime Debugging and Visualization for AI",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/microsoft/tensorwatch",
packages=setuptools.find_packages(),
license='MIT',
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
include_package_data=True,
install_requires=[
'matplotlib', 'numpy', 'pyzmq', 'plotly', 'ipywidgets',
'pydot>=1.4.2',
'nbformat', 'scikit-image', 'nbformat', 'pyyaml', 'scikit-image', 'graphviz' # , 'receptivefield'
]
)