-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (35 loc) · 1.12 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
[tool.poetry]
name = "sklearn-transformer-extensions"
version = "0.2.3"
description = """\
Some scikit-learn transformer extensions to make using pandas dataframes in \
scikit-learn pipelines easier."""
authors = ["Random Geek <[email protected]>"]
homepage = "https://github.com/randomgeek78/sklearn-transformer-extensions"
[tool.poetry.dependencies]
python = "^3.8"
scikit-learn = "^1.0.0"
numpy = "*"
pandas = {version = "*", optional = true}
[tool.poetry.dev-dependencies]
pytest = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pyright]
include = ["sklearn_transformer_extensions"]
venv = ".venv"
venvPath = "."
reportMissingImports = true
reportMissingTypeStubs = false
reportPrivateImportUsage = false
useLibraryCodeForTypes = true
pythonVersion = "3.8"
pythonPlatform = "Linux"
executionEnvironments = [{ root = "sklearn_transformer_extensions" }]
[tool.yapf]
split_before_named_assigns=false
allow_split_before_dict_value=false
column_limit=80
[tool.pytest.ini_options]
addopts="--pdbcls=IPython.terminal.debugger:TerminalPdb --doctest-modules --doctest-glob='*.md'"