-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (45 loc) · 1.78 KB
/
pyproject.toml
File metadata and controls
47 lines (45 loc) · 1.78 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "qugrad"
version = "1.0.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 quantum optimal control."
keywords = ["quantum", "optimal", "control"]
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"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
"py-ste == 1.*", # Follows semantic versioning. See https://PySTE.readthedocs.io
"tensorflow == 2.*" # Follows semantic versioning. See https://www.tensorflow.org/guide/versions
]
[project.urls]
Homepage = "https://github.com/Christopher-K-Long/QuGrad"
Documentation = "https://QuGrad.readthedocs.io/"
Issues = "https://github.com/Christopher-K-Long/QuGrad/issues"
Changelog = "https://github.com/Christopher-K-Long/QuGrad/blob/main/ChangeLog.md"