-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
68 lines (55 loc) · 1.4 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
[tool.poetry]
authors = ["AI2 Team <[email protected]>"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
description = "ai_prepline is a python library that assists with the creation of data-processing pipelines."
license = "Copyright, JP Morgan Chase & Co. 2022"
name = "ai_prepline"
version = "1.0.0"
[tool.poetry.dependencies]
drain3 = "^0.9.11"
numpy = "^1.23.5"
pandas = "^1.5.2"
pandera = "0.13.4"
python = ">=3.8,<=3.11.4"
scikit-learn = "^1.2.0"
[tool.poetry.group.dev.dependencies]
ruff = "^0.8.0"
pytest = "^8.3.4"
[tool.isort]
profile = "black"
[tool.mypy]
allow_redefinition = true
ignore_missing_imports = true
show_error_codes = true
warn_no_return = true
[tool.black]
line-length = 88
[tool.pylint.BASIC]
good-names = ["i", "j", "k", "n", "f", "fp", "fd", "s"]
[tool.pylint."MESSAGES CONTROL"]
max-line-length = 88
disable = [
"invalid-name",
"missing-docstring",
"too-few-public-methods",
"too-many-ancestors",
"too-many-instance-attributes",
"too-many-locals",
"too-many-nested-blocks",
"too-many-public-methods",
"too-many-statements",
"pointless-statement",
"fixme",
"too-many-arguments",
"unnecessary-lambda-assignment",
"singleton-comparison",
]
[tool.pylint."FORMAT"]
max-branches = 8
max-line-length = 88
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]