-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
56 lines (51 loc) · 1.15 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools >= 61.2.0",
"setuptools-scm >= 6.3.2",
"wheel >= 0.37.0",
]
[project]
name = "vqepy"
description = "An open source Python package for molecular and condensed matter VQE research"
readme = "README.md"
version = "1.0.0"
keywords = [
"quantum chemistry",
"variational methods",
"condensed matter",
]
license = {file = "LICENSE.txt"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.10"
dependencies = [
"pyscf",
"numpy",
"scipy",
"pennylane",
"pandas",
"matplotlib",
"jax[cpu]",
"pennylane-qiskit",
"qiskit_ibm_provider",
"pyyaml",
"networkx",
"basis-set-exchange",
"ipykernel",
"pennylane-lightning",
"jaxopt",
"optax",
]
[project.urls]
Source = "https://github.com/javinoram/VqePy"
website = "https://github.com/javinoram/VqePy"
[tool.setuptools_scm]
write_to = "quantumsim/_version.py"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"vqepy.quantumsim" = ["*"]