-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
123 lines (107 loc) · 2.36 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
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
119
120
121
122
123
[project]
name = "CheckMates"
version = "0.2.0"
description = "CheckMates is an AutoML library which catches and warns of problems with your data and problem setup before modeling."
authors = [
{name="Alteryx, Inc.", email="[email protected]"}
]
maintainers = [
{name="Alteryx, Inc.", email="[email protected]"}
]
dependencies = [
"numpy<=1.23.5,>=1.21.0",
"pandas>=1.5.0",
"woodwork>=0.22.0",
"click>=8.0.0",
"black[jupyter]>=22.3.0",
]
requires-python = ">=3.8,<4.0"
readme = "README.md"
license = {text = "BSD-3-Clause"}
[project.urls]
"Source Code"= "https://github.com/alteryx/CheckMates/"
"Issue Tracker" = "https://github.com/alteryx/CheckMates/issues"
[project.optional-dependencies]
docs = [
"docutils<0.17,>=0.15.2",
"pydata-sphinx-theme>=0.3.1",
"astroid<=2.6.6",
"Sphinx>=4.5.0",
"nbconvert>=6.4.5",
"nbsphinx<0.9.0,>=0.8.5",
"sphinx-autoapi>=1.8.3",
"sphinx-inline-tabs==2022.1.2b11",
"sphinx-copybutton==0.4.0",
"myst-parser==0.16.1",
]
dev = [
"ruff==0.0.228",
]
test = [
"pytest==7.1.2",
"coverage[toml]>=6.4",
]
[tool.setuptools]
include-package-data = true
license-files = ["LICENSE"]
[tool.setuptools.packages.find]
namespaces = true
[tool.setuptools.package-data]
"*" = [
"*.txt",
"README.md",
]
[tool.setuptools.exclude-package-data]
"*" = [
"* __pycache__",
"*.py[co]",
"docs/*"
]
[tool.black]
line-length = 88
target-version = ["py39"]
[tool.ruff]
line-length = 88
select = [
"D",
# Pyflakes
"F",
# Pycodestyle
"E",
"W",
# isort
"I001"
]
ignore = ["E501", "D107", "D401"]
[tool.ruff.per-file-ignores]
"__init__.py" = ["E402", "F401", "I001", "E501"]
"tests/**" = ["D"]
"datachecks/utils/**" = ["D"]
".github/**" = ["D"]
"docs/**" = ["D"]
[tool.ruff.isort]
known-first-party = ["checkmates"]
[tool.ruff.pydocstyle]
convention = "google"
[tool.coverage.run]
source = ["checkmates"]
[tool.coverage.report]
exclude_lines =[
"pragma: no cover",
"raise AssertionError",
"if __name__ == .__main__.:",
"if profile:",
"pytest.skip"
]
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
testpaths = [
"tests/*"
]
filterwarnings = [
"ignore::DeprecationWarning",
"ignore::PendingDeprecationWarning"
]
junit_duration_report = "call"