tensorwatch/setup.py

32 строки
997 B
Python
Исходник Постоянная ссылка Обычный вид История

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",
),
include_package_data=True,
2019-05-15 11:56:53 +03:00
install_requires=[
'matplotlib', 'numpy', 'pyzmq', 'plotly', 'ipywidgets',
'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
]
)