File tree Expand file tree Collapse file tree 4 files changed +45
-45
lines changed Expand file tree Collapse file tree 4 files changed +45
-45
lines changed Original file line number Diff line number Diff line change 37
37
- uses : chartboost/ruff-action@v1
38
38
- name : Test with pytest
39
39
run : |
40
- pytest
40
+ pytest
Original file line number Diff line number Diff line change @@ -9,6 +9,49 @@ unfixable = []
9
9
10
10
# restrict Line length to 99
11
11
line-length = 88
12
+
13
+ # Exclude Jupyter notebooks from linting
14
+ exclude = [" *.ipynb" ]
15
+
12
16
[build-system ]
13
17
requires = [" setuptools >= 61" ]
14
- build-backend = " setuptools.build_meta"
18
+ build-backend = " setuptools.build_meta"
19
+
20
+ [project ]
21
+ name = " ordinalgbt"
22
+ version = " 0.1.2"
23
+ description = " A library to build Gradient boosted trees for ordinal labels"
24
+ readme = {file = " README.md" , content-type = " text/markdown" }
25
+ authors = [
26
+ {
name =
" Adamos Spanashis" ,
email =
" [email protected] " }
27
+ ]
28
+ requires-python = " >=3.8"
29
+ classifiers = [
30
+ " Programming Language :: Python :: 3" ,
31
+ ]
32
+ dependencies = [
33
+ " lightgbm<4" ,
34
+ " numpy" ,
35
+ " scipy" ,
36
+ " scikit-learn" ,
37
+ ]
38
+
39
+ [project .urls ]
40
+ Homepage = " https://github.com/adamingas/ordinalgbt"
41
+
42
+ [project .optional-dependencies ]
43
+ tests = [
44
+ " pytest" ,
45
+ " pytest-cov" ,
46
+ ]
47
+ dev = [
48
+ " scikit-learn" ,
49
+ " lightgbm<4.0.0" ,
50
+ " pytest" ,
51
+ " pytest-cov" ,
52
+ " shap" ,
53
+ " myst_nb" ,
54
+ " sphinx>7.2" ,
55
+ " sphinx-autoapi" ,
56
+ " sphinx-rtd-theme" ,
57
+ ]
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments