-
Notifications
You must be signed in to change notification settings - Fork 42
/
pyproject.toml
31 lines (27 loc) · 1.39 KB
/
pyproject.toml
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
[project]
name = "sequence"
version = "0.6.5"
authors = [
{name = "Xiaoliang Wu, Joaquin Chung, Alexander Kolar, Alexander Kiefer, Eugene Wang, Tian Zhong, Rajkumar Kettimuthu, Martin Suchara", email = "chungmiranda@anl.gov"}
]
maintainers = [
{name = "Caitao Zhan", email = "czhan@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.9"
dynamic = ["dependencies"]
keywords = ["quantum", "network", "discrete", "event", "simulator"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools]
packages = ['sequence', 'sequence.app', 'sequence.kernel', 'sequence.components',
'sequence.network_management', 'sequence.entanglement_management', 'sequence.qkd',
'sequence.resource_management', 'sequence.topology', 'sequence.utils', 'sequence.gui']
[tool.setuptools.package-data]
sequence = ["gui/user_templates.json", "gui/default_params.json", "gui/starlight.json"]
[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"