setup.cfg 378 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
[options]
include_package_data = True
install_requires =
    numpy
    scikit-learn!=0.22.0
    scipy

[options.packages.find]
where = lightgbm

11
12
13
14
15
16
17
18
19
20
21
22
[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