-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (50 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
55 lines (50 loc) · 1.21 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
[build-system]
requires = ["setuptools>=80", "wheel>=0.45", "setuptools_scm>=9.2"]
build-backend = "setuptools.build_meta"
[project]
name = "requsim"
description = "A simulation framework for quantum repeaters"
readme = "README.md"
authors = [
{ name = "Julius Wallnöfer" }
]
license = {file = "LICENSE"}
dependencies = [
"numpy>=2.3.5",
"pandas>=2.3.3"
]
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Physics",
"Intended Audience :: Science/Research",
]
keywords = [
"quantum information",
"quantum information theory",
"quantum communication",
"quantum repeater"
]
requires-python = ">=3.11"
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/jwallnoefer/requsim"
[project.optional-dependencies]
test = ["pytest>=9.0.2"]
docs = [
"sphinx",
"autodocsumm",
"recommonmark",
"sphinx-rtd-theme",
"requests>=2.32.5",
"certifi>=2025.11.12",
"Pygments>=2.19.2",
"idna>=3.11",
"urllib3>=2.6.2",
"Jinja2>=3.1.6"
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools_scm]
write_to = "src/requsim/version.py"
local_scheme = "no-local-version"