-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
66 lines (56 loc) · 1.45 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]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "tensorkrowch"
dynamic = ["version", "readme"]
description = "Tensor Networks with PyTorch"
authors = [
{name = "José Ramón Pareja Monturiol", email = "[email protected]"}
]
maintainers = [
{name = "José Ramón Pareja Monturiol", email = "[email protected]"}
]
license = {file = "LICENSE.txt"}
keywords = [
"tensor",
"network",
"tensor network",
"tensor networks",
"mps",
"mpo",
"peps",
"quantum"
]
requires-python = ">=3.8"
dependencies = [
"torch>=1.9",
"opt_einsum>=3.0",
]
[project.optional-dependencies]
tests = ["pytest", "pytest-cov"]
docs = [
"sphinx==4.5.0",
"sphinx-book-theme==0.3.3",
"sphinx-copybutton==0.5.2",
"sphinxcontrib-applehelp==1.0.4",
"sphinxcontrib-devhelp==1.0.2",
"sphinxcontrib-htmlhelp==2.0.1",
"sphinxcontrib-qthelp==1.0.3",
"sphinxcontrib-serializinghtml==1.1.5",
"ipykernel",
"nbsphinx==0.9.3"
]
# To run nbsphinx, pandoc should be installed via conda: conda install pandoc
[tool.setuptools.dynamic]
version = {attr = "tensorkrowch.__version__"}
readme = {file = "README.md", content-type = "text/markdown"}
[tool.setuptools]
packages = [
"tensorkrowch",
"tensorkrowch.models",
"tensorkrowch.decompositions"
]
[project.urls]
GitHub = "https://github.com/joserapa98/tensorkrowch"
Documentation = "https://joserapa98.github.io/tensorkrowch"