-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
84 lines (74 loc) · 2.21 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
[tool.poetry]
name = "personalfinance"
version = "1.0.0"
description = "Tracking your Income and Expenses Automatically"
license = "MIT"
authors = ["Jeroen Bouma"]
packages = [
{ include = "personalfinance" },
]
readme = "README.md"
homepage = "https://www.jeroenbouma.com/projects/personalfinance"
repository = "https://github.com/JerBouma/PersonalFinance"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Financial and Insurance Industry",
"Topic :: Office/Business :: Financial :: Investment",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[tool.poetry.dependencies]
python = ">=3.10, <3.13"
pandas = {extras = ["excel", "performance"], version = "^2.1.0"}
xlsxwriter = "^3.1.5"
fuzzywuzzy = "^0.18.0"
tqdm = "^4.66.1"
requests = "^2.31.0"
python-levenshtein = "^0.23.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.1"
pylint = "^2.17.5"
codespell = "^2.2.5"
black = ">=23.7,<25.0"
pytest-mock = "^3.11.1"
pytest-recording = "^0.13.0"
pytest-cov = "^4.1.0"
ruff = "^0.0.287"
pytest-timeout = "^2.1.0"
pytest-recorder = "^0.2.3"
ipykernel = "^6.25.2"
mypy = "^1.6.0"
types-requests = "^2.31.0.9"
types-pyyaml = "^6.0.12.12"
pre-commit = "^3.5.0"
[build-system]
requires = ["setuptools<65.5.0", "poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 122
select = ["E", "W", "F", "Q", "W", "S", "UP", "I", "PD", "SIM", "PLC", "PLE", "PLR", "PLW"]
ignore = ["S105", "S106", "S107", "PLR0913", "PLR0912", "PLR0911","PLR0915"]
exclude = ["conftest.py"]
[tool.pylint]
max-line-length = 122
disable = ["R0913", "W1514", "R0911", "R0912", "R0915", "R0801", "W0221", "C0103", "E1131"]
[tool.ruff.isort]
combine-as-imports = true
force-wrap-aliases = true
[tool.isort]
profile = "black"
line_length = 122
skip_gitignore = true
combine_as_imports = true
[tool.codespell]
ignore-words-list = 'te'
skip = '*.json,./.git,pyproject.toml,poetry.lock,examples'
[tool.mypy]
disable_error_code = "misc"
[tool.pytest.ini_options]
filterwarnings = [
"ignore::pytest.PytestAssertRewriteWarning:",
]