-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (67 loc) · 1.6 KB
/
Copy pathpyproject.toml
File metadata and controls
79 lines (67 loc) · 1.6 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
[project]
name = "beantab"
version = "0.1.1"
description = "BeanTab - Spreadsheet-like balance manager for Fava and Beancount"
authors = [
{ name = "Evernight" }
]
dependencies = [
# "beancount-lazy-plugins @ git+https://github.com/Evernight/beancount-lazy-plugins",
"fava>=1.30.3",
]
readme = "README.md"
requires-python = ">= 3.10"
license = {text = "GPL-2.0"}
[project.urls]
Source = "https://github.com/Evernight/beantab"
[build-system]
requires = ["setuptools>=68", "wheel", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
beantab = [
"BeanTab.js",
"templates/*.html",
"templates/*.css",
]
[dependency-groups]
dev = [
"coverage>=7.6.10",
"mypy>=1.9.0",
"pylint>=3.1.0",
"pytest>=8.3.3",
"ruff>=0.8.1",
]
[tool.pylint.'messages control']
disable = [
"broad-exception-raised",
"duplicate-code",
"missing-module-docstring",
"missing-class-docstring",
"missing-function-docstring",
"no-else-return",
"line-too-long",
"too-few-public-methods",
"too-many-arguments",
"too-many-positional-arguments",
"too-many-locals",
"too-many-branches",
"too-many-statements",
"too-many-return-statements",
]
[tool.pytest.ini_options]
filterwarnings = "ignore::DeprecationWarning"
[tool.ruff]
line-length = 120
extend-exclude = [
"frontend/node_modules",
"src/beantab.egg-info",
]
[tool.ruff.lint.isort]
force-single-line = true
[tool.ruff.lint]
extend-select = ["I"]