-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
86 lines (74 loc) · 1.77 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
77
78
79
80
81
82
83
84
85
86
[project]
name = "rlane-chase"
version = "1.0.4"
description = "Process Chase Bank transaction files"
authors = [
{name = "Russel Lane", email = "russel@rlane.com"},
]
license = {text = "MIT"}
readme = "README.md"
keywords = ["chase", "python", "banking", "checking", "credit-cards", "graphs",]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Office/Business :: Financial",
]
requires-python = ">=3.10"
dependencies = [
"matplotlib>=3.9.2",
"numpy>=2.1.3",
"pandas>=2.2.3",
"rlane-libcli>=1.0.8",
]
[project.urls]
Homepage = "https://github.com/russellane/chase"
[project.scripts]
chase = 'chase.cli:main'
[tool.pdm]
[tool.pdm.dev-dependencies]
dev = [
"black>=24.10.0",
"flake8-bugbear>=24.10.31",
"flake8-pydocstyle>=0.2.4",
"flake8-pylint>=0.2.1",
"flake8-pytest-style>=2.0.0",
"flake8-simplify>=0.21.0",
"flake8>=7.1.1",
"isort>=5.13.2",
"mypy>=1.13.0",
"pandas-stubs>=2.2.3.241009",
"pytest-cov>=6.0.0",
"pytest-mock>=3.14.0",
"pytest>=8.3.3",
]
[tool.black]
line-length = "97"
[tool.isort]
line_length = "97"
profile = "black"
[tool.pylint.format]
max-line-length = "97"
[tool.pylint.messages_control]
enable = [
"useless-suppression",
]
fail-on = [
# useless-suppression
"I0021",
]
[tool.pydocstyle]
convention = "google"
add-ignore = [
# "D105", # pep257 numpy google # Missing docstring in magic method
"D105",
# "D202", # pep257 numpy google # No blank lines allowed after function docstring
"D202",
]
[tool.mypy]
strict = true
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
# vim: set ts=4 sw=4 et: