-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpyproject.toml
48 lines (39 loc) · 1.04 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
[tool.poetry]
name = "Py-Boost"
version = "0.5.1"
description = "Python based GBDT"
authors = [
"Vakhrushev Anton <[email protected]>",
"Iosipoi Leonid",
"Sergey Kupriyanov"
]
readme = "README.md"
repository = "https://github.com/sb-ai-lab/Py-Boost"
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[tool.poetry.dependencies]
python = ">=3.8, <3.12"
scikit-learn = ">=1"
numpy = "*"
joblib = "*"
numba = "*"
ujson = '*'
pandas = ">=1"
onnx = ">=1.16, <2"
onnxruntime = ">=1.16, <2"
treelite = "^3"
treelite_runtime = "^3"
tqdm = ">=4.64.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"