-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpyproject.toml
62 lines (52 loc) · 1.35 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
[tool.poetry]
name = "cyclic-boosting"
version = "1.4.0"
description = "Implementation of Cyclic Boosting machine learning algorithms"
authors = ["Blue Yonder GmbH"]
packages = [{include = "cyclic_boosting"}]
readme = "README.md"
classifiers = [
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python",
"License :: OSI Approved :: Eclipse Public License 2.0 (EPL-2.0)"
]
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
six = ">=1.16.0"
decorator = ">=5.1.1"
numba = ">=0.56.4"
numpy = ">=1.12.1"
numexpr = ">=2.5.2"
scikit-learn = ">=0.18.2"
pandas = ">=0.20.3"
matplotlib = ">=1.5.1"
hypothesis = ">=6.70.0"
scipy = ">=1.10"
[tool.poetry.group.dev.dependencies]
black = ">=23.1.0"
ruff = ">=0.0.256"
pytest = ">=7.2.2"
pre-commit = ">=3.2.2"
pytest-cov = ">=4.0.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
pydata-sphinx-theme = ">=0.13.1"
myst-parser = ">=1.0.0"
Sphinx = ">=6.1.3"
[tool.poetry.group.jupyter]
optional = true
[tool.poetry.group.jupyter.dependencies]
jupyterlab = ">=3.6.3"
jupyter-black = ">=0.3.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
target_version = ["py38"]
[tool.ruff]
line-length = 120
ignore = ["E741", "E722"]
[tool.setuptools_scm]