-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
76 lines (64 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
70
71
72
73
74
75
76
[project]
name = "fava-portfolio-returns"
dynamic = ["version"]
description = "fava-portfolio-returns shows portfolio returns in Fava"
authors = [
{ name = "Andreas Gerstmayr", email = "[email protected]" }
]
dependencies = [
"fava>=1.30",
"beangrow>=1.0.1",
]
readme = "README.md"
requires-python = ">= 3.10"
license = {text = "GPL-2.0"}
[project.urls]
Source = "https://github.com/andreasgerstmayr/fava-portfolio-returns"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"coverage>=7.6.10",
"mypy>=1.9.0",
"pylint>=3.1.0",
"pytest>=8.3.3",
"ruff>=0.8.1",
"types-protobuf>=5.29.1.20241207",
"types-python-dateutil>=2.9.0.20241206",
"types-PyYAML>=6",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.wheel]
packages = ["src/fava_portfolio_returns"]
[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.mypy.overrides]]
module = "beangrow.*"
ignore_missing_imports = true
[tool.pytest.ini_options]
filterwarnings = "ignore::DeprecationWarning"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
extend-select = ["I"]
[tool.ruff.lint.isort]
force-single-line = true