-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
69 lines (58 loc) · 1.61 KB
/
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
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
[project]
name = "timelined_array"
description = "Manage easily 1 or multidimensionnal samples numpy arrays that are time related. Extends numpy without removing any of it's abilities on such arrays."
authors = [
{ name = "Timothe Jost", email = "[email protected]" },
]
dependencies = ["numpy"]
requires-python = ">=3.11"
readme = "README.md"
license = { text = "MIT" }
dynamic = ["version"]
[project.urls]
"Homepage" = "https://pypi.org/project/timelined_array/"
"Source" = "https://github.com/JostTim/timelined_array"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[tool.pdm.version]
source = "file"
path = "src/timelined_array/__init__.py"
[tool.pdm.dev-dependencies]
dev = ["pytest>=8.3.2", "pytest-cov>=5.0.0"]
[tool.pytest.ini_options]
addopts = "--pdbcls=IPython.terminal.debugger:TerminalPdb --cov-report xml --cov --junitxml=pytest_results.xml"
testpaths = ["tests"]
[tool.black]
preview = true
line-length = 120
[tool.flake8]
max-line-length = 120
ignore = [
"F401",
"F403",
"F841",
"E401",
"E265",
"E704",
"E266",
"E203",
"E712",
"W503",
"W605",
]
[tool.pyright]
reportGeneralTypeIssues = "information"
reportOptionalMemberAccess = "information"
reportMissingImports = "information"
reportMissingModuleSource = "information"
reportInvalidStringEscapeSequence = "information"
reportOptionalOperand = "none"
reportOptionalSubscript = "none"
reportOptionalIterable = "none"
reportAttributeAccessIssue = "information"
typeCheckingMode = "basic"
include = ["src", "tests"]
exclude = ["**/__pycache__"]