-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
66 lines (59 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[metadata]
name = tensorly-viz
version = 0.1.7
license = "MIT license",
description = Package to visualise component-based decomposition models such as PCA and PARAFAC
long_description = file: README.rst
author = Marie Roald & Yngve Mardal Moe
author_email = [email protected]
url=https://tensorly.org/viz
classifiers=
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Natural Language :: English
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
[options]
packages = tlviz
include_package_data = True
install_requires =
numpy
scipy
matplotlib
pandas>=1.1.0
statsmodels
xarray
requests
[options.extras_require]
docs =
sphinx
sphinx-gallery
sphinxcontrib-bibtex
autodocsumm
numpydoc
tensorly
tensorly-sphinx-theme
plotly>=4.12
torch
test =
pytest
pytest-randomly
pytest-cov
coverage
tensorly
plotly>=4.12
torch
devel =
flake8
isort
black
bump2version
all =
pingouin
[bdist_wheel]
universal = 1
[flake8]
exclude = docs
max-line-length = 120
ignore = E203, W503
per-file-ignores = __init__.py:F401