-
Notifications
You must be signed in to change notification settings - Fork 117
/
pyproject.toml
115 lines (97 loc) · 2.65 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "scikit-lego"
version = "0.9.2"
description="A collection of lego bricks for scikit-learn pipelines"
license = {file = "LICENSE"}
readme = "readme.md"
requires-python = ">=3.6"
authors = [
{name = "Vincent D. Warmerdam"},
{name = "Matthijs Brouns"},
]
maintainers = [
{name = "Francesco Bruzzesi"}
]
dependencies = [
"narwhals>=1.2.0",
"pandas>=1.1.5",
"scikit-learn>=1.0",
"importlib-metadata >= 1.0; python_version < '3.8'",
"importlib-resources; python_version < '3.9'",
]
classifiers = [
"Programming Language :: Python :: 3",
"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",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
repository = "https://github.com/koaning/scikit-lego"
issue-tracker = "https://github.com/koaning/scikit-lego/issues"
documentation = "https://koaning.github.io/scikit-lego/"
[project.optional-dependencies]
cvxpy = ["cmake", "osqp", "cvxpy>=1.1.8", "numpy<2.0"]
formulaic = ["formulaic>=0.6.0"]
umap = ["umap-learn>=0.4.6", "numpy<2.0"]
all = ["scikit-lego[cvxpy,formulaic,umap]"]
docs = [
"mkdocs>=1.5.3",
"mkdocs-autorefs>=0.5.0",
"mkdocs-material>=9.4.5",
"mkdocs-material-extensions>=1.2",
"mkdocstrings>=0.23.0",
"mkdocstrings-python>=1.7.3",
]
test = [
"narwhals[polars,pyarrow]",
"pytest>=6.2.5",
"pytest-xdist>=1.34.0",
"pytest-cov>=2.6.1",
"pytest-mock>=1.6.3",
]
test-all = [
"scikit-lego[all,test]",
]
utils = [
"matplotlib>=3.0.2",
"jupyter>=1.0.0",
"jupyterlab>=0.35.4",
]
dev = [
"scikit-lego[all,test,docs]",
"pre-commit>=1.18.3",
"ruff>=0.1.6",
]
[tool.setuptools.packages.find]
include = ["sklego*"]
exclude = [
"docs",
"images",
"notebooks",
"tests",
]
[tool.setuptools.package-data]
sklego = ["data/*.zip"]
[tool.ruff]
line-length = 120
exclude = ["docs"]
[tool.ruff.lint]
extend-select = ["I", "T201"]
ignore = [
"E731", # do not assign a `lambda` expression, use a `def`
]
[tool.pytest.ini_options]
markers = [
"cvxpy: tests that require cvxpy (deselect with '-m \"not cvxpy\"')",
"formulaic: tests that require formulaic (deselect with '-m \"not formulaic\"')",
"umap: tests that require umap (deselect with '-m \"not umap\"')"
]