forked from ueeseer/TimeEvolutionQuantComputing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (25 loc) · 692 Bytes
/
Copy pathpyproject.toml
File metadata and controls
30 lines (25 loc) · 692 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "time-evolution-quant-computing"
version = "0.1.0"
description = "Quantum spin-chain time-evolution simulation using exact diagonalisation and Trotterisation"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "Apache-2.0"}
dependencies = [
"numpy>=1.24",
"scipy>=1.10",
"matplotlib>=3.7",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
]
[project.scripts]
run-time-evolution = "GroupProject.run_time_evolution_project:main"
[tool.setuptools.packages.find]
include = ["GroupProject*"]
[tool.pytest.ini_options]
testpaths = ["tests"]