-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpyproject.toml
58 lines (48 loc) · 1.11 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
[project]
name = "fava-dashboards"
dynamic = ["version"]
description = "Custom Dashboards for Beancount in Fava"
authors = [
]
dependencies = [
"fava>=1.26.1",
"pyyaml>=6.0.1",
"beanquery>=0.1.0",
]
readme = "README.md"
requires-python = ">= 3.8"
license = {text = "MIT License"}
[project.urls]
Source = "https://github.com/andreasgerstmayr/fava-dashboards"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"mypy>=1.9.0",
"pylint>=3.1.0",
"ruff>=0.8.1",
"types-PyYAML>=6",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.wheel]
packages = ["src/fava_dashboards"]
[tool.pylint.'messages control']
disable = [
"missing-module-docstring",
"missing-class-docstring",
"missing-function-docstring",
"no-else-return",
"line-too-long",
]
[[tool.mypy.overrides]]
module = "beanquery.query"
ignore_missing_imports = true
[tool.ruff]
line-length = 120
[tool.ruff.lint]
extend-select = ["I"]