-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (42 loc) · 1.83 KB
/
Copy pathpyproject.toml
File metadata and controls
44 lines (42 loc) · 1.83 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
[build-system]
requires = ["scikit-build-core", "pybind11"]
build-backend = "scikit_build_core.build"
[project]
name = "py-ste"
version = "1.1.2"
authors = [
{ name="Christopher K. Long", email="ckl45@cam.ac.uk" },
{ name="Crispin H. W. Barnes"},
{ name="Normann Mertig"}
]
maintainers = [
{ name="Christopher K. Long", email="ckl45@cam.ac.uk" },
]
description = "A Python package for evolving unitaries and states under the Schrödinger equation using first-order Suzuki-Trotter and computing switching functions."
keywords = ["evolver", "evolution", "suzuki", "trotter", "simulation", "intergrator", "integration", "unitary", "quantum"]
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Quantum Computing"
]
license = "Apache-2.0"
license-files = ["LICEN[CS]E*"]
dependencies = ["numpy >= 1.21, < 3"] # Major version change will likely indicate an ABI break. See https://numpy.org/doc/stable/dev/depending_on_numpy.html
[project.urls]
Homepage = "https://github.com/Christopher-K-Long/PySTE"
Documentation = "https://PySTE.readthedocs.io/"
Issues = "https://github.com/Christopher-K-Long/PySTE/issues"
Changelog = "https://github.com/Christopher-K-Long/PySTE/blob/main/ChangeLog.md"