-
Notifications
You must be signed in to change notification settings - Fork 253
/
pyproject.toml
65 lines (56 loc) · 1.5 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
[tool.poetry]
name = "cartola"
version = "0.1.0"
description = "Extração de dados da API do CartolaFC, análise exploratória dos dados e modelos preditivos em R e Python - 2014-22. [EN] Data munging, analysis and modeling of CartolaFC - the most popular fantasy football game in Brazil and maybe in the world. Data cover years 2014-22"
authors = ["Henrique Gomide <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "3.10.*"
kedro = "0.18.2"
mypy = "^0.982"
Unidecode = "^1.3.6"
pandas = "^1.5.0"
[tool.poetry.dev-dependencies]
kedro-docker = "^0.3.0"
kedro-telemetry = "^0.2.1"
kedro-viz = "^5.1.1"
pytest = "^7.1.3"
pytest-cov = "^4.0.0"
pytest-mock = "^3.10.0"
pre-commit = "^2.20.0"
jupyterlab = "^3.4.8"
black = "^22.10.0"
flake8 = "^5.0.4"
isort = "^5.10.1"
jupyter = "^1.0.0"
nbstripout = "^0.6.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.kedro]
package_name = "cartola"
project_name = "caRtola"
project_version = "0.18.2"
[tool.black]
line-length = 120
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 120
known_third_party = "kedro"
[tool.pytest.ini_options]
addopts = """
--cov-report term-missing \
--cov src/cartola -ra"""
[tool.coverage.report]
fail_under = 0
show_missing = true
exclude_lines = ["pragma: no cover", "raise NotImplementedError"]
[tool.vulture]
paths = ["src/cartola"]
min_confidence = 80
sort_by_size = true
verbose = true