-
Notifications
You must be signed in to change notification settings - Fork 21
/
pyproject.toml
47 lines (40 loc) · 982 Bytes
/
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
[project]
name = "fava-dashboards"
dynamic = ["version"]
description = "Custom Dashboards for Beancount in Fava"
authors = [
{ name = "Andreas Gerstmayr", email = "[email protected]" }
]
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 = [
"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_dashboards"]
[tool.pylint.'messages control']
disable = [
"missing-module-docstring",
"missing-class-docstring",
"missing-function-docstring",
"no-else-return",
]