-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
52 lines (45 loc) · 1.16 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[metadata]
name = tensorhue
version = attr: tensorhue.__version__
author = epistoteles
author_email = <[email protected]>
description = TensorHue lets you visualize tensors in your console.
long_description_content_type = text/markdown
long_description =
TensorHue is a Python library that allows you to visualize tensors right in your console, making understanding and debugging tensor contents easier.
Learn more at: https://github.com/epistoteles/tensorhue
keywords =
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
Programming Language :: Python :: 3
Operating System :: Unix
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
[options]
packages = find:
python_requires = >=3.7
zip_safe = no
install_requires =
numpy
rich
matplotlib
[options.packages.find]
include = tensorhue*
[project]
name = "tensorhue"
dynamic = ["version"]
[tool.setuptools.dynamic]
version = {attr = "tensorhue.__version__"}
[options.extras_require]
testing =
pre-commit
pylint
torch
tox
pytest
pytest-cov
mypy
flake8
[options.package_data]
tensorhue = py.typed