-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpyproject.toml
More file actions
121 lines (107 loc) · 2.15 KB
/
Copy pathpyproject.toml
File metadata and controls
121 lines (107 loc) · 2.15 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
[project]
name = "labcore"
version = "1.0.0"
description = "toolkit for acquiring, processing, and analyzing data in a CM/QI physics lab."
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
authors = [
{name = "Wolfgang Pfaff", email = "wolfgangpfff@gmail.com"},
{name = "Marcos Frenkel", email = "marcosf2@illinois.edu"},
]
dependencies = [
"jupyterlab",
"jupyter_bokeh",
"qcodes",
"bokeh",
"pandas",
"xarray",
"matplotlib",
"numpy",
"seaborn",
"lmfit",
"h5py",
"holoviews",
"panel",
"param",
"hvplot",
"gitpython",
"watchdog",
"Pillow",
"nest_asyncio",
"ruamel.yaml",
]
[project.scripts]
autoplot = "labcore.scripts.monitr_server:run_autoplot"
reconstruct-data = "labcore.scripts.reconstruct_safe_write_data:main"
[build-system]
requires = [
"setuptools >= 48",
"wheel >= 0.29.0",
"versioningit >= 1.1.0"
]
build-backend = 'setuptools.build_meta'
[tool.ruff]
exclude = ["docs"]
[tool.ruff.lint]
extend-select = ["I"]
[tool.mypy]
files = ["src"]
strict_optional = true
show_column_numbers = true
warn_unused_ignores = true
warn_unused_configs = true
warn_redundant_casts = true
no_implicit_optional = true
disallow_untyped_defs = true
show_error_codes = true
enable_error_code = "ignore-without-code"
[[tool.mypy.overrides]]
module = [
"h5py",
"lmfit",
"matplotlib.*",
"pyqtgraph.*",
"ruamel.*",
"param.*",
"holoviews.*",
"hvplot.*",
"bokeh.*",
"setuptools.*",
"pandas",
"pandas.*",
"seaborn",
"seaborn.*",
"nest_asyncio",
]
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = ["test"]
log_cli = true
[tool.coverage.run]
branch = true
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
include = ["labcore*"]
exclude = ["site*", "docs*", "test*"]
[tool.setuptools.package-data]
labcore = ["py.typed"]
[dependency-groups]
dev = [
"pytest",
"pytest-cov",
"ruff",
"mypy",
"types-markdown>=3.10.2.20260211",
]
docs = [
"sphinx",
"pydata-sphinx-theme",
"myst-parser",
"myst-nb",
"pandoc",
"ipykernel",
"linkify-it-py",
"h5py",
]