forked from DistrictDataLabs/yellowbrick
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
118 lines (112 loc) · 3.05 KB
/
pyproject.toml
File metadata and controls
118 lines (112 loc) · 3.05 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
[project]
name = "yellowbrick2"
version = "2.0.2"
description = "Fork of yellowbrick, a suite of visual analysis and diagnostic tools for machine learning, that supports sklearn >= 1.8.0"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.7"
authors = [
{ name = "The scikit-yb developers", email = "yellowbrick@googlegroups.com" },
]
maintainers = [
{ name = "Ed Schofield" },
]
keywords = [
"visualization",
"machine learning",
"scikit-learn",
"matplotlib",
"data science",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Visualization",
]
dependencies = [
"matplotlib>=2.0.2,!=3.0.0",
"scipy>=1.0.0",
"scikit-learn>=1.0.2",
"numpy>=1.16.0",
"cycler>=0.10.0",
]
[project.optional-dependencies]
optional = [
"nltk>=3.2",
"pandas>=1.0.4",
"umap-learn>=0.5",
]
test = [
"pytest>=6.1",
"pytest-cov>=2.10",
"pytest-flakes>=4.0.0",
"pytest-spec>=2.0.0",
"coverage>=5.3",
"nltk>=3.2",
"pandas>=1.0.4",
"umap-learn>=0.5",
"numba>=0.55",
]
binder = [
"pandas>=1.0.4",
]
docs = [
"Sphinx>=3.4",
"sphinx-rtd-theme>=0.5.1",
"numpydoc>=1.1",
"pandas>=1.0.4",
"umap-learn>=0.5.1",
]
[project.urls]
Documentation = "http://scikit-yb.org/"
Source = "https://github.com/PythonCharmers/yellowbrick"
Tracker = "https://github.com/PythonCharmers/yellowbrick/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["yellowbrick"]
[tool.pytest.ini_options]
addopts = "--verbose --cov=yellowbrick --flakes --spec --cov-report=xml --cov-report=term"
python_files = "tests/*"
spec_header_format = "{class_name} ({path})"
flakes-ignore = [
"__init__.py UnusedImport",
"__init__.py ImportStarUsed",
"test_*.py ImportStarUsed",
"test_*.py ImportStarUsage",
"conftest.py UnusedVariable",
"examples/* ALL",
"tests/checks.py ALL",
"docs/_build ALL",
]
filterwarnings = [
"once::UserWarning",
"once::DeprecationWarning",
"once::PendingDeprecationWarning",
"ignore::sklearn.exceptions.ConvergenceWarning",
"ignore::FutureWarning",
]
[tool.flake8]
max-line-length = 88
extend-ignore = ["E203", "E266"]
per-file-ignores = [
"__init__.py:F401",
"test_*.py:F405,F403",
"conftest.py:F841",
]