-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
32 lines (28 loc) · 946 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
requires-python = ">=3.10"
name = "iq_readout"
description = "Classifiers for IQ readout data from qubits"
version = "0.1.0"
authors = [
{ name = "Marc Serra Peralta", email = "marcserraperalta@gmail.com" }
]
maintainers = [
{ name = "Marc Serra Peralta", email = "marcserraperalta@gmail.com" }
]
license = {file = "LICENSE"}
readme = "README.md"
dependencies = [
"numpy",
"scipy",
"matplotlib",
"pyyaml",
]
keywords = ["IQ", "readout", "qubit", "classifiers", "lda"]
[tool.setuptools.packages.find]
include = ["iq_readout", "iq_readout.*"] # 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", "sphinx", "sphinx-rtd-theme", "pytest-black"]