forked from TorchDR/TorchDR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (44 loc) · 863 Bytes
/
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
[project]
name = "torchdr"
description = "Torch Dimensionality Reduction Library"
authors = [
{name = "Hugues Van Assel", email = "[email protected]"},
{name = " TorchDR contributors"}
]
license = {text = "BSD (3-Clause)"}
readme = {file = "README.md", content-type = "text/markdown"}
dependencies = [
"numpy>=1.20",
"scikit-learn",
"torch",
"tqdm",
]
dynamic = ["version"]
[tool.setuptools]
packages = ["torchdr"]
[tool.setuptools.dynamic]
version = {attr = "torchdr.__about__.__version__"}
[project.optional-dependencies]
test = [
"pytest",
"flake8",
"coverage",
"numpydoc",
"pytest-cov",
"codecov"
]
keops = [
"pykeops",
]
all = [
"pykeops",
]
doc = [
"sphinx",
"sphinx_gallery",
"sphinx_rtd_theme",
"matplotlib",
"numpydoc",
"memory_profiler",
"myst-parser",
]