-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
42 lines (36 loc) · 1.12 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
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "vhlab-toolbox-python"
version = "0.1.0"
description = "Python port of vhlab-toolbox-matlab"
requires-python = ">=3.9"
dependencies = [
"numpy",
"pandas",
"scipy",
"h5py",
"matplotlib",
]
[project.optional-dependencies]
test = ["pytest"]
[project.urls]
Repository = "https://github.com/VH-Lab/vhlab-toolbox-python"
[tool.pytest.ini_options]
addopts = "--import-mode=importlib"
[tool.ruff.lint]
select = ["E", "F", "W"]
ignore = [
"E501", # line too long — existing code
"E701", # multiple statements on one line — existing style
"E741", # ambiguous variable name — existing style
"F401", # unused imports — many in existing code
"F841", # local variable assigned but never used — existing code
"E722", # bare except — existing code
"E402", # module-level import not at top — existing code
"W293", # blank line contains whitespace — existing code
"W605", # invalid escape sequence — existing code
]
[tool.setuptools.packages.find]
include = ["vlt*"]