-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
62 lines (57 loc) · 1.41 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
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
[build-system]
requires = ["scikit-build-core", "pybind11"]
build-backend = "scikit_build_core.build"
[project]
name = "piquasso"
version = "5.0.1"
description = "A simulator for photonic quantum computations."
readme = "README.md"
license = { file = "LICENSE.txt" }
keywords = ["piquasso", "quantum", "photonic"]
maintainers = [
{ name = "Budapest Quantum Computing Group", email = "[email protected]" },
]
requires-python = ">=3.8,<3.13"
dependencies = [
"numpy>=1.19.5",
"scipy>=1.5.4",
"numba>=0.57.1",
"quantum-blackbird==0.5.0",
]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
]
[project.urls]
Homepage = "https://piquasso.com"
Documentation = "https://piquasso.readthedocs.io"
Repository = "https://github.com/Budapest-Quantum-Computing-Group/piquasso"
[project.optional-dependencies]
tensorflow = ["tensorflow"]
jax = ["jax[cpu]"]
dev = [
"pytest>=8.0.1,<8.4.0",
"coverage~=7.6.1",
"mypy==1.8.0",
"flake8~=7.1.1",
"nbqa>=1.3.1,<1.10.0",
"nbmake~=1.5.4",
"black>=24.2,<24.11",
]
docs = [
"sphinx~=7.1.2",
"nbsphinx~=0.9.5",
"furo~=2024.8.6",
"ipython>=8.12.3,<8.31.0",
"sphinx-design>=0.5,<0.7",
]
benchmark = [
"matplotlib~=3.9.2",
"pytest-profiling~=1.7.0",
"pytest-benchmark>=4.0,<5.2",
"perceval-quandela~=0.11.2",
]
[tool.scikit-build]
cmake.verbose = true
logging.level = "INFO"