-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (55 loc) · 1.41 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
[project]
name = "sklearo"
description = "A versatile Python package featuring scikit-learn like transformers for feature preprocessing, compatible with all kind of dataframes thanks to narwhals."
version = "0.1.1"
keywords = ["feature preprocessing", "scikit-learn", "machine learning"]
authors = [
{ name = "Claudio Salvatore Arcidiacono", email = "[email protected]" },
]
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = ["narwhals", "pydantic", "scikit-learn"]
[project.optional-dependencies]
dev = [
"black",
"ruff",
"pre-commit",
"pytest",
"pytest-cov",
"polars",
"pandas",
"numpy",
"pre-commit",
]
doc = ["mkdocs", "mkdocs-material", "mkdocstrings[python]", "mkdocs-jupyter"]
build = ["build", "twine"]
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.2,<4"]
[project.urls]
"Homepage" = "https://github.com/ClaudioSalvatoreArcidiacono/sklearo"
"Documentation" = "https://claudiosalvatorearcidiacono.github.io/sklearo/"
"Bug Tracker" = "https://github.com/ClaudioSalvatoreArcidiacono/sklearo/issues"
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
profile = "black"