-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
100 lines (88 loc) · 2.26 KB
/
pyproject.toml
File metadata and controls
100 lines (88 loc) · 2.26 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[build-system]
requires = ["setuptools==80.10.2", "setuptools-scm==9.2.2"]
build-backend = "setuptools.build_meta"
[project]
name = "whatsthedamage"
dynamic = ["version"]
description = "A package to process bank account exports in CSV files. With optionally a web interface."
keywords = ["csv", "account", "report", "web"]
readme = "README.md"
authors = [
{ name = "Balázs NÉMETH", email = "balagetech@protonmail.com" }
]
maintainers = [
{name = "Balázs NÉMETH", email = "balagetech@protonmail.com"}
]
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
'Operating System :: OS Independent',
]
license = "GPL-3.0-or-later"
requires-python = ">= 3.9"
dependencies = [
"pandas==3.0.0",
"pydantic==2.12.5",
"python-magic==0.4.27",
"pyyaml==6.0.3",
"scikit-learn==1.7.2",
"scipy==1.17.0",
"imbalanced-learn==0.14.1",
]
[project.optional-dependencies]
dev = [
"babel==2.17.0",
"coverage==7.10.7",
"mypy==1.18.2",
"pandas-stubs==2.3.2.250926",
"pip-tools==7.5.0",
"pytest==8.4.2",
"pytest-cov==7.0.0",
"pytest-sugar==1.1.1",
"ruff==0.13.2",
"sphinx-autodoc-typehints==3.2.0",
"sphinx-rtd-theme==3.0.2",
"sphinx==8.2.3",
"tox==4.25.0",
"types-python-dateutil==2.9.0.20250822",
"types-PyYAML==6.0.2",
"vulture==2.14"
]
web = [
"Flask-Caching==2.3.1",
"Flask-WTF==1.2.2",
"flask==3.1.2",
"gunicorn==23.0.0",
"lxml==6.0.1",
"werkzeug==3.1.3",
"wtforms==3.2.1",
]
[project.scripts]
whatsthedamage = "whatsthedamage.cli_app:main"
[project.urls]
bugs = "https://github.com/abalage/whatsthedamage/issues"
changelog = "https://github.com/abalage/whatsthedamage/blob/master/changelog.md"
homepage = "https://github.com/abalage/whatsthedamage"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools_scm]
[tool.setuptools.package-data]
"*" = ["*.*"]
[tool.mypy]
files = "src"
ignore_missing_imports = true
strict = true
warn_unreachable = true
warn_no_return = true
disable_error_code = ["misc", "unused-ignore"]
[tool.pytest.ini_options]
pythonpath = [".", "src"]
[tool.ruff]
line-length = 119
[tool.ruff.lint.mccabe]
max-complexity = 10
[tool.vulture]
min_confidence = 80
paths = ["src", "tests"]
sort_by_size = true
verbose = false