-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (57 loc) · 1.68 KB
/
pyproject.toml
File metadata and controls
66 lines (57 loc) · 1.68 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "queso"
version = "0.0.0"
requires-python = ">=3.9"
dependencies = [
"h5py", # data format for saving
"matplotlib",
"polars", # post-analysis dataframes
"seaborn",
"numpy",
"jax", # differentiable programming
"flax", # neural network library
"tensorcircuit", # quantum circuits
"qiskit",
"pylatexenc",
"pyyaml",
# "torch",
"optax", # optimization management
"python-dotenv", # local environment variables
"prettytable",
"psutil",
"GPUtil",
]
description = "Queso: Variational quantum sensing protocols."
readme = "README.md"
keywords = ["quantum", "sensor", "optimization"]
license = {text = "Apache 2.0"}
authors = [
{name = "Benjamin MacLellan", email = "benjamin.maclellan@uwaterloo.ca"},
]
classifiers = [
# How mature is this project? Common values are
"Development Status :: 4 - Beta",
# Indicate who your project is intended for
"Intended Audience :: Science/Research ",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Information Analysis",
# Pick your license as you wish (see also "license" above)
"License :: OSI Approved :: Apache Software License",
# Specify the Python versions you support here.
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
[project.optional-dependencies]
docs = [
"pymdown-extensions",
"mkdocstrings",
"mkdocs-material",
"mkdocstrings-python",
"mknotebooks",
"mkdocs-minify-plugin",
]