-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (73 loc) · 2.11 KB
/
Copy pathpyproject.toml
File metadata and controls
84 lines (73 loc) · 2.11 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
[build-system]
requires = ["setuptools>=80.9.0", "setuptools_scm>=9.2.2"]
build-backend = "setuptools.build_meta"
[project]
name = "qmp-kit"
dynamic = ["version"]
dependencies = [
"platformdirs>=4.5.1",
"numpy>=2.3.5",
"scipy>=1.16.3",
"torch>=2.9.1",
"pybind11>=3.0.1",
"ninja>=1.13.0",
"hydra-core>=1.3.2",
"openfermion>=1.7.1",
"tensorboard>=2.20.0",
"dacite>=1.9.2",
"pyscf>=2.12.1",
]
requires-python = ">=3.12"
authors = [{ name = "Hao Zhang", email = "hzhangxyz@outlook.com" }]
description = "Quantum Manybody Problem"
readme = "README.md"
license = "GPL-3.0-or-later"
keywords = ["quantum", "manybody", "quantum-chemistry", "quantum-simulation", "molecular-simulation", "algorithms", "simulation", "wave-function", "ground-state", "ansatz", "torch", "pytorch"]
classifiers = [
"Programming Language :: C++",
"Programming Language :: Python :: 3",
"Environment :: GPU :: NVIDIA CUDA",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Chemistry",
]
[project.optional-dependencies]
dev = [
"mypy>=1.19.1",
"pytest>=9.0.2",
"ruff>=0.14.10",
"types-pyyaml>=6.0.12",
]
pyscf = [
"pyscf>=2.12.1",
]
[project.urls]
Homepage = "https://github.com/USTC-KnowledgeComputingLab/qmp-kit"
Documentation = "https://github.com/USTC-KnowledgeComputingLab/qmp-kit"
Repository = "https://github.com/USTC-KnowledgeComputingLab/qmp-kit.git"
Issues = "https://github.com/USTC-KnowledgeComputingLab/qmp-kit/issues"
[project.scripts]
qmp = "qmp.__main__:main"
qmp-kit = "qmp.__main__:main"
[tool.setuptools.packages.find]
include = ["qmp*"]
[tool.setuptools.package-data]
qmp = [
"hamiltonian/_hamiltonian.cpp",
"hamiltonian/_hamiltonian_cpu.cpp",
"hamiltonian/_hamiltonian_cuda.cu",
]
[tool.setuptools_scm]
version_file = "qmp/_version.py"
version_scheme = "no-guess-dev"
fallback_version = "0.0.0"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F"]
[tool.ruff.format]
[tool.mypy]
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true