-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (44 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
53 lines (44 loc) · 1.08 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
[tool.poetry]
name = "aprendendo-estatistica"
version = "0.1.0"
description = ""
authors = ["“Gutto <“guttolaudie@gmail.com”>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9,<3.9.7 || >3.9.7,<4.0"
seaborn = "^0.13.2"
nbformat = "^5.9.2"
ipykernel = "^6.29.3"
jupyter = "^1.0.0"
scipy = "^1.12.0"
pytest = "^8.0.2"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.2"
streamlit = "^1.31.1"
pandas = "^2.2.1"
ucimlrepo = "^0.0.3"
plotly = "^5.19.0"
pytest-cov = "^4.1.0"
blue = "^0.9.1"
isort = "^5.13.2"
taskipy = "^1.12.2"
ipykernel = "^6.29.3"
[tool.poetry.group.doc.dependencies]
mkdocs-material = "^9.5.11"
mkdocstrings = "^0.24.0"
mkdocstrings-python = "^1.8.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath ="."
addopts = "--doctest-modules"
[tool.isort]
profile = "black"
line_length = 79
[tool.taskipy.tasks]
lint = "blue --check --diff . && isort --check --diff ."
docs = "mkdocs serve"
pre_test = "task lint"
test = "pytest -s -x --cov=aprendendo-estatistica -vv"
post_test = "coverage html"