-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpyproject.toml
53 lines (46 loc) · 1.41 KB
/
pyproject.toml
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
[tool.poetry]
name = "cca-zoo"
version = "2.6.0"
description = "Canonical Correlation Analysis Zoo: A collection of Regularized, Deep Learning based, Kernel, and Probabilistic methods in a scikit-learn style framework"
authors = ["jameschapman <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/jameschapman19/cca_zoo"
keywords = ["cca"]
[tool.poetry.dependencies]
python = ">=3.8,<4.0.0"
scikit-learn = "^1.2.2"
tensorly = "*"
tqdm = "*"
# Optional dependencies
jax = {version = "*", optional = true}
numpyro = {version = "*", optional = true}
arviz = {version = "*", optional = true}
funsor = {version = "*", optional = true}
torch = [
{version = "^2.0.1", platform = "darwin"},
{version = "^2.0.1", platform = "linux", source = "torch"},
{version = "^2.0.1", platform = "win32", source = "torch"}, ]
lightning = "*"
[[tool.poetry.source]]
name = "torch"
url = "https://download.pytorch.org/whl/cpu"
priority = "explicit"
[tool.poetry.extras]
visualisation = ["seaborn", "opentsne", "umap-learn", "matplotlib"]
probabilistic = ["jax", "numpyro", "arviz", "funsor"]
deep = ["torch", "lightning"]
[tool.poetry.dev-dependencies]
black = "*"
flake8 = "*"
codecov = "*"
pytest-cov = "*"
seaborn = "*"
opentsne = "*"
umap-learn = "*"
rdata = "*"
torchvision = "*"
pre-commit = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"