-
Notifications
You must be signed in to change notification settings - Fork 153
/
pyproject.toml
55 lines (50 loc) · 1.28 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
[tool.poetry]
name = "pretty-confusion-matrix"
version = "0.6.0"
description = "plot a pretty confusion matrix (like Matlab) in python using seaborn and matplotlib"
repository = "https://github.com/wcipriano/pretty-print-confusion-matrix"
authors = ["Wagner Cipriano <[email protected]>", "Khuyen Tran <[email protected]>"]
keywords = ["confusion matrix"]
readme = "README.md"
[project.urls]
homepage = "https://pypi.org/project/pretty-confusion-matrix"
source = "https://github.com/wcipriano/pretty-print-confusion-matrix"
download = "https://pypi.org/project/pretty-confusion-matrix/#files"
tracker = "https://github.com/wcipriano/pretty-print-confusion-matrix/issues"
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
numpy = [
{version = "^2.0.0", python = ">=3.9"},
]
matplotlib = [
{version = "^3.9.0", python = ">=3.9"},
]
seaborn = "^0.13.2"
pandas = [
{version = "^2.2.2", python = ">=3.9"},
]
scikit-learn = [
{version = "^1.5", python = ">=3.9"},
]
[tool.poetry.dev-dependencies]
pre-commit = "^3.5.0"
black = "^24.4.2"
flake8 = "^5.0.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 79
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
)/
'''