setup.cfg 501 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[options]
include_package_data = True
install_requires =
    numpy
    scikit-learn!=0.22.0
    scipy

[options.extras_require]
dask =
    dask[array]>=2.0.0
    dask[dataframe]>=2.0.0
    dask[distributed]>=2.0.0
    pandas

[options.packages.find]
where = lightgbm

18
19
20
21
22
23
24
25
26
27
28
29
[flake8]
ignore =
    # line too long
    E501,
    # line break occurred before a binary operator
    W503
exclude =
    ./.nuget,
    ./external_libs,
    ./lightgbm-python,
    ./python-package/build,
    ./python-package/compile