-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (45 loc) · 1019 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
48
49
50
51
52
53
[tool.poetry]
name = "etrade-xml2xlsx"
version = "1.0.0"
description = "App for converting XML to XLSX"
license = "GPLv3"
authors = ["mnau23"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
pandas = "2.2.1"
py2app = "~0.28"
# pyinstaller = "~5.13"
setuptools = "70.3.0"
xlsxwriter = "~3.2"
[tool.poetry.group.dev.dependencies]
bandit = "~1.8"
black = "~24.10"
isort = "~5.13"
pylint = "~3.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.bandit]
# exclude_dirs = [""]
[tool.black]
target-version = ["py312"]
line-length = 90
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 90
atomic = true
[tool.pylint.messages_control]
disable = ''',
abstract-class-instantiated,
broad-exception-caught,
import-error,
no-member,
protected-access,
'''
[tool.pylint.options]
ignored-argument-names = "_.*|^ignored_|^unused_|args|kwargs"
max-line-length = "140"