-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (57 loc) · 1.37 KB
/
pyproject.toml
File metadata and controls
68 lines (57 loc) · 1.37 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
56
57
58
59
60
61
62
63
64
65
66
67
68
[build-system]
requires = ["setuptools>=69.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "nanonis-qcodes-controller"
version = "0.1.10"
description = "Simulator-first bridge between Nanonis SPM and QCodes"
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
dependencies = [
"PyYAML>=6.0",
]
[project.optional-dependencies]
dev = [
"black>=24.8.0",
"mypy>=1.11.0",
"pytest>=8.3.0",
"pytest-cov>=5.0.0",
"ruff>=0.6.0",
"types-PyYAML>=6.0.12.20241230",
]
qcodes = [
"qcodes>=0.46.0",
]
nanonis = [
"nanonis-spm>=1.0.3",
]
[project.scripts]
nqctl = "nanonis_qcodes_controller.cli:main"
[tool.setuptools.packages.find]
include = ["nanonis_qcodes_controller*"]
[tool.setuptools.package-data]
"nanonis_qcodes_controller.resources" = ["config/*.yaml"]
[tool.black]
line-length = 100
target-version = ["py310"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP"]
ignore = ["E501"]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"simulator: requires Nanonis STM Simulator",
"simulator_writes: guarded write scenarios on simulator",
]
[tool.mypy]
python_version = "3.10"
strict = true
packages = ["nanonis_qcodes_controller"]
warn_unused_configs = true
[[tool.mypy.overrides]]
module = ["qcodes", "qcodes.*"]
ignore_missing_imports = true