-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (30 loc) · 768 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (30 loc) · 768 Bytes
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
[project]
name = "treegrad"
version = "1.1.0"
description = "transfer parameters from lightgbm to differentiable decision trees!"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
authors = [{ name = "Chapman Siu", email = "chpmn.siu@gmail.com" }]
requires-python = ">=3.10"
dependencies = [
"lightgbm>=3.0",
"numpy>=1.21",
"pandas>=1.3",
"scikit-learn>=1.0",
"scipy>=1.7",
"torch>=2.6",
]
[project.urls]
Homepage = "http://github.com/chappers/TreeGrad"
[dependency-groups]
dev = ["pytest>=7.0"]
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["treegrad"]
[tool.pytest.ini_options]
testpaths = ["treegrad/tests"]
[tool.ruff]
extend-exclude = ["notebooks"]