-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (73 loc) · 1.65 KB
/
pyproject.toml
File metadata and controls
84 lines (73 loc) · 1.65 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[project]
name = "wavefunction_branching"
version = "0.1.0"
description = "A package for identifying non-interfering decompositions of Matrix Product State wavefunctions, and then continuing time-evolution after sampling from the branches"
requires-python = ">=3.12"
readme = "README.md"
dependencies = [
"pydantic",
"pytest",
"ipykernel",
"torch",
"quimb",
"numpy",
"pandas",
"seaborn",
"matplotlib",
"scipy",
"opt_einops@git+https://github.com/jordansauce/opt_einops",
"pathlib",
"physics-tenpy",
"fire",
"datetime",
"jaxtyping",
"scikit-learn",
"natsort",
"wandb",
"samplics",
]
[project.urls]
repository = "https://github.com/jordansauce/wavefunction_branching"
[project.optional-dependencies]
dev = [
"ruff",
"pyright",
"pre-commit",
]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = [
"wavefunction_branching",
"instantaneous_benchmarks",
"exact",
"evolution_analysis"
]
[tool.ruff]
line-length = 100
fix = true
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
"I",
]
[tool.ruff.format]
# Enable reformatting of code snippets in docstrings.
docstring-code-format = true
# Disable the "unused import" rule
[tool.ruff.lint.per-file-ignores]
"*.py" = ["F401"] # F401 is the code for unused imports
[tool.ruff.lint.isort]
known-third-party = ["wandb"]
[tool.pyright]
include = ["wavefunction_branching", "exact", "tests", "instantaneous_benchmarks", "evolution_analysis"]