forked from LaunchPlatform/beanhub-import
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (71 loc) · 1.66 KB
/
Copy pathpyproject.toml
File metadata and controls
76 lines (71 loc) · 1.66 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
[project]
name = "beancount-importer-rules"
version = "0.1.8"
description = "Beancount importer rules engine"
authors = [
{ name = "Zeno Jiricek", email = "airtonix@users.noreply.github.com" },
]
dependencies = [
"beancount-parser>=1.2.3",
"beancount-black>=1.0.4",
"jinja2>=3.1.4",
"pyyaml>=6.0.2",
"pydantic>=2.8.2",
"pytz>=2024.1",
"click>=8.1.7",
"rich>=13.8.0",
"types-PyYAML>=6.0.12.20240808",
"types-Pygments>=2.18.0.20240506",
"types-regex>=2024.7.24.20240726",
"arrow>=1.3.0",
"pyarrow>=17.0.0",
"ipykernel>=6.29.5",
]
requires-python = ">=3.12"
readme = "README.md"
license = { text = "MIT" }
scripts = { beancount-import = "beancount_importer_rules.cli:cli" }
[tool.pdm]
distribution = true
[tool.pdm.dev-dependencies]
dev = [
"pytest>=8.3.2",
"pytest-mock>=3.14.0",
"rich>=13.8.0",
"beancount==2.3.6",
"pylance>=0.16.1",
"ruff>=0.6.2",
"pytest-md-report>=0.6.2",
"mypy>=1.11.2",
"pyright>=1.1.378",
"pre-commit>=3.8.0",
"mkdocs-material[imaging]>=9.5.34",
"mkdocs>=1.6.1",
"mkdocstrings>=0.26.0",
"mkdocstrings-python",
"mkdocs-autorefs>=1.2.0",
"mike>=2.1.3",
"pdm-bump>=0.9.8",
"pdm-version>=2.1.0",
"markdown>=3.7",
"pymdown-extensions>=10.9",
"pygments>=2.18.0",
"pillow>=10.4.0",
"cairosvg>=2.7.1",
"xmltojson>=2.0.2",
"detect-secrets>=1.5.0",
"mkdocs-macros-plugin>=1.2.0",
]
[tool.pdm.build]
includes = [
"beancount_importer_rules",
"README.md",
"pyproject.toml",
"LICENSE",
]
[tool.pyright]
venvPath = "."
venv = ".venv"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"