-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
66 lines (58 loc) · 1.69 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
54
55
56
57
58
59
60
61
62
63
64
65
66
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "wheel"]
[project]
name = "quac"
description = "Quantitative Attribution with Counterfactuals"
readme = "README.md"
requires-python = ">=3.7"
classifiers = ["Programming Language :: Python :: 3"]
keywords = []
license = { text = "BSD 3-Clause License" }
authors = [{ email = "funkej@hhmi.org", name = "Funke Lab" }]
dynamic = ["version"]
dependencies = [
"captum",
"numpy",
"munch",
"torch",
"torchvision",
"funlib.learn.torch@git+https://github.com/funkelab/funlib.learn.torch",
"opencv-python",
"pydantic",
"scipy",
"scikit-learn",
]
[project.optional-dependencies]
dev = ['pytest', 'black', 'mypy', 'pdoc', 'pre-commit']
docs = [
"ipykernel",
"jupyter_sphinx",
"sphinx_autodoc_typehints",
"sphinx_rtd_theme",
"furo",
"sphinx_togglebutton",
"sphinxcontrib_jquery",
"sphinxcontrib-email",
"sphinx>6",
"tomli",
]
[project.urls]
homepage = "https://github.com/funkelab/quac"
repository = "https://github.com/funkelab/quac"
[tool.pixi.project]
channels = ["nvidia/label/cuda-11.8.0", "nvidia", "conda-forge", "pytorch"]
platforms = ["linux-64"]
[tool.pixi.dependencies]
cuda = { version = "*", channel = "nvidia/label/cuda-11.8.0" }
mkl = { version = "<2024.0.0" }
pytorch = { version = "2.0.1.*", channel = "pytorch" }
torchvision = { version = "0.15.2.*", channel = "pytorch" }
pytorch-cuda = { version = "11.8.*", channel = "pytorch" }
[tool.pixi.pypi-dependencies]
quac = { path = ".", editable = true }
[tool.pixi.environments]
default = { solve-group = "default" }
dev = { features = ["dev"], solve-group = "default" }
docs = { features = ["docs"], solve-group = "default" }
[tool.pixi.tasks]