-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (54 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
59 lines (54 loc) · 1.22 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
[project]
name = "bravium-test-heitor"
version = "0.1.0"
description = ""
authors = [
{name = "heitor",email = "heitor.nolla@gmail.com"}
]
readme = "README.md"
requires-python = ">=3.11.5 <=3.12"
dependencies = [
"pandas (>=2.3.2,<3.0.0)",
"numpy (>=2.3.3,<3.0.0)",
"matplotlib (>=3.10.6,<4.0.0)",
"seaborn (>=0.13.2,<0.14.0)",
"plotly (>=6.3.0,<7.0.0)",
"kagglehub (>=0.3.13,<0.4.0)",
"taskipy (>=1.14.1,<2.0.0)",
"black (>=25.1.0,<26.0.0)",
"ruff (>=0.13.0,<0.14.0)",
"ipykernel (>=6.30.1,<7.0.0)",
"nltk (>=3.9.1,<4.0.0)",
"scikit-learn (>=1.7.2,<2.0.0)",
"lime (>=0.2.0.1,<0.3.0.0)",
"shap (>=0.48.0,<0.49.0)",
"ipython (>=9.5.0,<10.0.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ["py38"]
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.mypy_cache
| \.venv
| build
| dist
)/
'''
[tool.ruff]
line-length = 88
target-version = "py38"
extend-select = ["I", "B", "E", "F", "W"]
exclude = ["build", "dist", ".venv"]
fix = true
[tool.taskipy.tasks]
lint = "ruff check ."
fix = "ruff check . --fix"
format = "black ."
precommit = "task lint && task format"