2019-05-15 11:56:53 +03:00
|
|
|
# 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",
|
2020-03-04 09:42:29 +03:00
|
|
|
version="0.9.1",
|
2019-05-15 11:56:53 +03:00
|
|
|
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",
|
2019-05-22 16:28:05 +03:00
|
|
|
url="https://github.com/microsoft/tensorwatch",
|
2019-05-15 11:56:53 +03:00
|
|
|
packages=setuptools.find_packages(),
|
|
|
|
license='MIT',
|
|
|
|
classifiers=(
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
),
|
2019-05-29 00:58:50 +03:00
|
|
|
include_package_data=True,
|
2019-05-15 11:56:53 +03:00
|
|
|
install_requires=[
|
2020-02-07 01:44:19 +03:00
|
|
|
'matplotlib', 'numpy', 'pyzmq', 'plotly', 'ipywidgets',
|
2023-06-08 14:21:43 +03:00
|
|
|
'pydot>=1.4.2',
|
2019-11-14 05:55:19 +03:00
|
|
|
'nbformat', 'scikit-image', 'nbformat', 'pyyaml', 'scikit-image', 'graphviz' # , 'receptivefield'
|
2019-05-15 11:56:53 +03:00
|
|
|
]
|
2019-10-30 19:20:14 +03:00
|
|
|
)
|