This repository was archived by the owner on Nov 29, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
120 lines (105 loc) · 2.88 KB
/
pyproject.toml
File metadata and controls
120 lines (105 loc) · 2.88 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
119
120
[tool.poetry]
name = "sk-transformers"
version = "0.11.0"
description = "A collection of various pandas & scikit-learn compatible transformers for all kinds of preprocessing and feature engineering"
authors = ["Christopher Lemke <1@lemke.ai>"]
license = "MIT"
readme = "docs/README.md"
packages = [{ include = "sk_transformers", from = "src" }]
include = ["CHANGELOG.md"]
classifiers = [
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Pre-processors",
"Typing :: Typed",
]
keywords = [
"feature engineering",
"preprocessing",
"pandas",
"scikit-learn",
"transformer",
"pipelines",
"machine learning",
"data science",
"artificial intelligence"
]
homepage = "https://chrislemke.github.io/sk-transformers/"
documentation = "https://chrislemke.github.io/sk-transformers/"
repository = "https://github.com/chrislemke/sk-transformers/"
[tool.poetry.urls]
Changelog = "https://github.com/chrislemke/sk-transformers/blob/main/CHANGELOG.md"
Issues = "https://github.com/chrislemke/sk-transformers/issues"
Discussions = "https://github.com/chrislemke/sk-transformers/discussions"
Contributing = "https://github.com/chrislemke/sk-transformers/blob/main/docs/CONTRIBUTING.md"
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
feature-engine = "^1.5.2"
ipywidgets = "^8.0.4"
joblib = "1.2.0"
numpy = "1.23.5"
pandas = "^1.5.2"
phonenumbers = "^8.13.4"
scikit-learn = "^1.2.0"
rich = "^13.3.1"
polars = "^0.16.7"
pyarrow = "^11.0.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.2.0"
pytest-cov = "4.0.0"
[tool.poetry.group.dev.dependencies]
black = {extras = ["jupyter"], version = "^23.1.0"}
bandit = "^1.7.4"
isort = "^5.12.0"
mypy = "^1.0.0"
pylint = "^2.16.1"
pre-commit = "^3.0.4"
nbstripout = "^0.6.1"
ssort = "^0.11.6"
[tool.poetry.group.docs.dependencies]
mkdocs = "1.4.2"
mkdocstrings = {extras = ["python"], version = "0.19.1"}
mkdocs-material = "9.0.2"
[tool.poetry.group.dev]
optional = false
[tool.poetry.group.test]
optional = true
[tool.poetry.group.docs]
optional = true
[build-system]
requires = ["poetry-core>=1.4.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = [
"tests"
]
[tool.pylint.messages_control]
disable = [
"C0301",
"C0103",
"C0114",
"E0401",
"R0902",
"R0903",
"R0913",
"R0914",
"W0201",
]
[tool.pylint.format]
max-line-length = 88
[tool.mypy]
strict = true
disallow_subclassing_any = false
ignore_missing_imports = true
disallow_any_generics = false
warn_return_any = false
warn_unused_ignores = false
no_namespace_packages = true
exclude = ["tests", "docs"]
[tool.isort]
profile = "black"
skip_glob = ["docs/*"]
src_paths = ["src/sk_transformers", "tests"]
extend_skip = [".md", ".yml", ".yaml"]