-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (34 loc) · 810 Bytes
/
pyproject.toml
File metadata and controls
36 lines (34 loc) · 810 Bytes
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
[build-system]
requires = [
"setuptools>=42.0.0",
"pybind11!=2.10.3,!=2.10.4,!=2.11.0,!=2.11.1",
"cmake>=3.19",
]
build-backend = "setuptools.build_meta"
[project]
name = "block2"
description = "An efficient MPO implementation of DMRG for quantum chemistry."
version = "0.5.4"
license = "GPL-3.0-only"
license-files = ["LICENSE"]
readme = "README.md"
maintainers = [
{ name = "Huanchen Zhai", email = "hczhai.ok@gmail.com" }
]
authors = [
{ name = "Huanchen Zhai" },
{ name = "Henrik R. Larsson" },
{ name = "Seunghoon Lee" },
{ name = "Zhi-Hao Cui" },
]
requires-python = ">= 3.6"
dependencies = [
"mkl==2021.4.0",
"mkl-include",
"intel-openmp",
"numpy",
"scipy",
"psutil",
]
[project.urls]
Homepage = "https://github.com/block-hczhai/block2-preview"