-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
52 lines (45 loc) · 1.12 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
[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.26",
"beangrow>=1.0.0",
"protobuf<3.21",
]
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 = [
"black>=24.3.0",
"mypy>=1.9.0",
"pylint>=3.1.0",
"types-PyYAML>=6.0.12.20240311",
]
[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 = [
"missing-module-docstring",
"missing-class-docstring",
"missing-function-docstring",
"line-too-long",
"too-many-arguments",
"too-many-positional-arguments",
"too-many-locals",
"too-many-branches",
"too-many-statements",
]