-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
110 lines (98 loc) · 2.54 KB
/
Copy pathpyproject.toml
File metadata and controls
110 lines (98 loc) · 2.54 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
[project]
name = "hypertrees-forecasting"
version = "0.1.1"
description = "Forecasting with Hyper-Trees"
readme = {file = "README.md", content-type = "text/markdown"}
authors = [
{name = "Alexander März", email = "statmixedmlgit@gmail.com"},
{name = "Kashif Rasul", email = "rasul.kashif@morganstanley.com"}
]
maintainers = [
{name = "Alexander März", email = "statmixedmlgit@gmail.com"}
]
license = { file = "LICENSE" }
requires-python = ">=3.11,<3.15"
keywords = [
"Gradient Boosted Trees",
"Hyper Models",
"Hybrid Models",
"Machine Learning",
"Time Series Forecasting",
"Time-Varying Parameters"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: Other/Proprietary License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
]
dependencies = [
"lightgbm>=4.6",
"numpy>=2.0",
"pandas>=2.3",
"torch>=2",
]
[project.optional-dependencies]
extras = [
"matplotlib>=3.10",
"shap>=0.48",
"optuna>=4",
]
docs = [
"mkdocs",
"mkdocstrings[python]",
"mkdocs-jupyter",
"mkdocs-material",
]
test = [
"pytest",
"pytest-cov",
"pytest-mock",
"coverage",
"flake8"
]
dev = [
"hypertrees-forecasting[test]",
"black",
"isort",
"mypy",
"pre-commit"
]
[project.urls]
Repository = "https://github.com/StatMixedML/Hyper-Trees"
Issues = "https://github.com/StatMixedML/Hyper-Trees/issues"
Discussions = "https://github.com/StatMixedML/Hyper-Trees/discussions"
Documentation = "https://github.com/StatMixedML/Hyper-Trees#readme"
[tool.setuptools]
include-package-data = true
zip-safe = true
[tool.setuptools.packages.find]
include = ["hypertrees*"]
exclude = ["docs*", "tests*", "*.tests*", "notebooks*", "scripts*", ".github*", "experiments*", "examples*"]
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
testpaths = ["tests"]
# restrict to models and utils
addopts = "--cov=hypertrees.models --cov=hypertrees.utils --cov-report=term-missing"
[tool.coverage.run]
branch = true
source = [
"hypertrees/models",
"hypertrees/utils.py",
]
[tool.coverage.report]
show_missing = true
skip_covered = false
omit = [
"hypertrees/experiments/*",
]
[tool.coverage.html]
directory = "htmlcov"