-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
61 lines (51 loc) · 1.1 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
[project]
name = "tensorgrad"
version = "0.2.0"
dependencies = [
"networkx==3.2.1",
"numpy",
"torch",
"nbval",
"pytest",
"einops",
"pdf2image",
"sympy",
"sparse",
"opt_einsum"
]
requires-python = ">=3.10"
authors = [
{name = "Thomas Ahle", email = "lobais@gmail.com"},
]
description = "Tensor Network Library with Symbolic Autograd"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["tensors", "autograd"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
[project.urls]
Homepage = "https://tensorcookbook.com"
Repository = "/~https://github.com/thomasahle/tensorgrad.git"
Issues = "/~https://github.com/thomasahle/tensorgrad/issues"
[build-system]
requires = [
"setuptools",
"wheel"
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages]
find = {}
[tool.ruff]
line-length = 110
indent-width = 4
[tool.mypy]
# Enable/disable type checking options
check_untyped_defs = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
exclude = "tests/"
[tool.pytest.ini_options]
# addopts = "-s"
# addopts = "--nbval"