forked from sequence-toolbox/SeQUeNCe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (67 loc) · 2.17 KB
/
Copy pathpyproject.toml
File metadata and controls
73 lines (67 loc) · 2.17 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
67
68
69
70
71
72
73
[project]
name = "sequence"
version = "0.8.5"
authors = [
{ name = "Xiaoliang Wu, Joaquin Chung, Alexander Kolar, Alexander Kiefer, Eugene Wang, Tian Zhong, Rajkumar Kettimuthu, Martin Suchara, Robert Hayek, Ansh Singal, Caitao Zhan", email = "czhan@anl.gov" }
]
maintainers = [
{ name = "Caitao Zhan", email = "czhan@anl.gov" },
{ name = "Robert Hayek", email = "rhayek@anl.gov" }
]
description = "Simulator of QUantum Network Communication (SeQUeNCe) is an open-source tool that allows modeling of quantum networks including photonic network components, control protocols, and applications."
readme = "README.md"
requires-python = ">=3.11, <3.15"
classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14"
]
keywords = ["quantum", "network", "discrete", "event", "simulator"]
dependencies = [
"dash>=3.3.0",
"dash-bootstrap-components>=2.0.4",
"dash-core-components>=2.0.0",
"dash-cytoscape>=1.0.2",
"dash-html-components>=2.0.0",
"dash-table>=5.0.0",
"gmpy2>=2.2.2",
"ipywidgets>=8.1.8",
"jupyterlab>=4.5.0",
"matplotlib>=3.10.7",
"networkx>=3.6.1",
"numpy>=2.3.5",
"pandas>=2.3.3",
"pandas-stubs~=2.3.3",
"plotly>=6.5.0",
"pytest>=9.0.2",
"qutip>=5.2.2",
"qutip-qip>=0.4.1",
"scipy>=1.16.3",
"scipy-stubs~=1.16.3",
"seaborn>=0.13.2",
"tqdm>=4.67.1",
]
[build-system]
requires = ["uv_build>=0.9.17,<0.10.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-root = ""
module-name = "sequence"
[tool.setuptools.package-data]
sequence = ["gui/user_templates.json", "gui/default_params.json", "gui/starlight.json"]
[tool.pytest.ini_options]
markers = [
"unit: Marks tests as unit tests",
]
[dependency-groups]
dev = [
"coverage>=7.13.4",
"ruff>=0.15.1",
"ty>=0.0.16",
]
[project.urls]
Homepage = "https://github.com/sequence-toolbox/SeQUeNCe"
Documentation = "https://sequence-rtd-tutorial.readthedocs.io/"
Issues = "https://github.com/sequence-toolbox/SeQUeNCe/issues"
Changelog = "https://github.com/sequence-toolbox/SeQUeNCe/blob/master/CHANGELOG.md"