-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
158 lines (138 loc) · 3.2 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
[project]
name = "scikit-base"
version = "0.12.0"
description = "Base classes for sklearn-like parametric objects"
authors = [
{name = "sktime developers", email = "[email protected]"},
]
maintainers = [
{name = "sktime developers", email = "[email protected]"},
{name = "Franz Király"},
]
readme = "README.md"
keywords = [
"data-science",
"machine-learning",
"scikit-learn",
]
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"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",
]
requires-python = ">=3.9,<3.14"
dependencies = []
[project.optional-dependencies]
all_extras = ["numpy", "pandas"]
dev = [
"scikit-learn>=0.24.0",
"pre-commit",
"pytest",
"pytest-cov",
]
linters = [
"mypy",
"isort",
"flake8",
"black",
"pydocstyle",
"nbqa",
"flake8-bugbear",
"flake8-builtins",
"flake8-quotes",
"flake8-comprehensions",
"pandas-vet",
"flake8-print",
"pep8-naming",
"doc8",
]
binder = ["jupyter"]
docs = [
"jupyter",
"myst-parser",
"nbsphinx>=0.8.6",
"numpydoc",
"pydata-sphinx-theme",
"sphinx-issues<6.0.0",
"sphinx-gallery<0.19.0",
"sphinx-panels",
"sphinx-design<0.7.0",
"Sphinx!=7.2.0,<9.0.0",
"tabulate",
]
test = [
"pytest",
"coverage",
"pytest-cov",
"safety",
"numpy",
"scipy",
"pandas",
"scikit-learn>=0.24.0",
]
[project.urls]
homepage = "https://github.com/sktime/skbase"
repository = "https://github.com/sktime/skbase"
documentation = "https://github.com/sktime/skbase"
download = "https://pypi.org/project/skbase/#files"
[project.license]
file = "LICENSE"
[build-system]
requires = ["setuptools>61", "wheel", "toml", "build"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
# ignore certain folders
addopts = [
"--doctest-modules",
"--ignore=docs",
"--cov=.",
"--cov-report=xml",
"--cov-report=html",
]
[tool.isort]
profile = "black"
src_paths = ["skbase/*"]
multi_line_output = 3
known_first_party = ["skbase"]
[tool.black]
line-length = 88
extend-exclude = "^/setup.py docs/conf.py"
[tool.pydocstyle]
convention = "numpy"
[tool.coverage.report]
show_missing = true
[tool.coverage.run]
source = ["skbase"]
omit = ["*/setup.py", "tests/*", "docs/*", "skbase/tests/*"]
[tool.doc8]
max-line-length = 88
ignore = ["D004"]
ignore_path = ["docs/_build", "docs/source/api_reference/auto_generated"]
[tool.bandit]
exclude_dirs = ["*/tests/*", "*/testing/*"]
[tool.setuptools]
zip-safe = true
[tool.setuptools.package-data]
sktime = [
"*.csv",
"*.csv.gz",
"*.arff",
"*.arff.gz",
"*.txt",
"*.ts",
"*.tsv",
]
[tool.setuptools.packages.find]
exclude = ["tests", "tests.*"]