forked from dask/dask-lightgbm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (43 loc) · 1.15 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
[tool.poetry]
name = "dask-lightgbm"
version = "0.2.0.dev0"
description = "LightGBM distributed training on Dask"
authors = [
"Jan Stiborek <[email protected]>"
]
readme = "README.md"
license = "BSD-3-Clause"
repository = "https://github.com/dask/dask-lightgbm"
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: System :: Distributed Computing",
"Topic :: Software Development :: Libraries :: Python Modules",
]
packages = [
{ include = "dask_lightgbm" },
]
exclude = ["*/tests"]
[tool.poetry.extras]
sparse = ["sparse", "scipy"]
[tool.poetry.dependencies]
python = "^3.6"
numpy = "^1.17.3"
lightgbm = "^2.3.0"
dask = "^2.6.0"
distributed = "^2.6.0"
toolz = "^0.10.0"
sparse = {version = "==0.5.0", optional = true}
scipy = {version = "^1.3.1", optional = true}
[tool.poetry.dev-dependencies]
pytest = "^5.3.5"
pytest-cov = "^2.8.1"
pylama = "^7.7.1"
pandas = "^0.25.3"
dask = {extras = ["array", "dataframe"], version = "^2.6.0"}
dask-ml = "^1.2.0"
scikit-learn = "^0.22.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"