setup.cfg 314 Bytes
Newer Older
1
2
3
4
5
6
[options]
include_package_data = True

[options.packages.find]
where = lightgbm

7
8
9
10
11
12
13
14
15
16
17
18
[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