-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (28 loc) · 799 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (28 loc) · 799 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "qpl"
description = "Exploring physics-informed learning for calculating ground-state energies of quantum systems."
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
authors = [
{ name="Hannes Vandecasteele", email="[email protected]" }
]
requires-python = ">=3.13"
dependencies = [
"numpy",
"torch",
"matplotlib",
"python-dotenv",
"pathlib"
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/hannesvdc/QPL"
Documentation = "https://github.com/hannesvdc/QPL"
Source = "https://github.com/hannesvdc/QPL"
[tool.setuptools.package-dir]
"" = "src"
[tool.setuptools.packages.find]
where = ["src"]