-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (32 loc) · 979 Bytes
/
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
requires-python = ">=3.10"
name = "qec-util"
description = "Useful tools for QEC simulation"
version = "0.2.0"
authors = [
{ name = "Marc Serra Peralta", email = "marcserraperalta@gmail.com" },
{ name = "Boris Varbanov", email = "b.m.varbanov@gmail.com"},
]
maintainers = [
{ name = "Marc Serra Peralta", email = "marcserraperalta@gmail.com" },
]
license = {file = "LICENSE"}
readme = "README.md"
dependencies = [
"numpy",
"xarray",
"matplotlib",
"pyyaml",
"networkx",
"lmfit",
"stim",
"python-sat",
]
[tool.setuptools.packages.find]
include = ["qec_util", "qec_util.*"] # package names should match these glob patterns (["*"] by default)
namespaces = false # to disable scanning PEP 420 namespaces (true by default)
[project.optional-dependencies]
dev = ["pip-tools", "pytest", "scalene", "black", "pytest-black", "pymatching"]