-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
52 lines (45 loc) · 1.29 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "scikit-playtime"
version = "0.1.2"
description="Rethinking machine learning pipelines a bit."
license = {file = "LICENSE"}
readme = "readme.md"
authors = [
{name = "Vincent D. Warmerdam"},
]
classifiers = [
"Programming Language :: Python :: 3",
"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",
]
dependencies = [
"scikit-learn>=1.0",
"narwhals>=0.8.14",
"skrub",
"polars",
"importlib-metadata >= 1.0; python_version < '3.8'",
"importlib-resources; python_version < '3.9'",
]
[project.optional-dependencies]
lint = ["pre-commit"]
test = ["pytest", "pandas"]
[project.urls]
repository = "https://github.com/koaning/playtime"
issue-tracker = "https://github.com/koaning/playtime/issues"
documentation = "https://koaning.github.io/playtime/"
[tool.setuptools.packages.find]
include = ["playtime*"]
exclude = [
"docs",
"images",
"notebooks",
"tests",
]