-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
908 additions
and
112 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,42 +7,40 @@ name = "probabilistic-reconciliation" | |
description = "Probabilistic reconciliation of time series forecasts" | ||
authors = [{name = "Simon Dirmeier", email = "[email protected]"}] | ||
readme = "README.md" | ||
license = "Apache-2.0" | ||
homepage = "https://github.com/dirmeier/reconcile" | ||
license = {file = "LICENSE"} | ||
keywords = ["probabilistic reconciliation", "forecasting", "timeseries", "hierarchical time series"] | ||
classifiers=[ | ||
classifiers= [ | ||
"Development Status :: 3 - Alpha", | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: 3.13", | ||
] | ||
requires-python = ">=3.9" | ||
requires-python = ">=3.11" | ||
dependencies = [ | ||
"blackjax-nightly>=0.9.6.post127", | ||
"distrax>=0.1.2", | ||
"chex>=0.1.5", | ||
"jaxlib>=0.4.18", | ||
"jax>=0.4.18", | ||
"flax>=0.7.3", | ||
"gpjax>=0.6.9", | ||
"optax>=0.1.3", | ||
"pandas>=1.5.1" | ||
"blackjax>=1.2.4", | ||
"chex>=0.1.8", | ||
"einops>=0.8.0", | ||
"flax>=0.10.2", | ||
"jax>=0.4.38", | ||
"optax>=0.2.4", | ||
"pandas>=1.5.1", | ||
"ramsey>=0.2.1", | ||
"tfp-nightly[jax]>=0.26.0.dev20241227", | ||
] | ||
dynamic = ["version"] | ||
|
||
[project.urls] | ||
homepage = "https://github.com/dirmeier/reconcile" | ||
|
||
[tool.hatch.build.targets.wheel] | ||
packages = ["reconcile"] | ||
|
||
[tool.hatch.version] | ||
path = "reconcile/__init__.py" | ||
|
||
[tool.hatch.build.targets.wheel] | ||
packages = ["reconcile"] | ||
|
||
[tool.hatch.build.targets.sdist] | ||
exclude = [ | ||
"/.github", | ||
|
@@ -55,20 +53,18 @@ dependencies = [ | |
"ruff>=0.3.0", | ||
"pytest>=7.2.0", | ||
"pytest-cov>=4.0.0", | ||
"gpjax>=0.5.0", | ||
"statsmodels>=0.13.2" | ||
] | ||
|
||
[tool.hatch.envs.test.scripts] | ||
lint = 'ruff check reconcile examples' | ||
test = 'pytest -v --doctest-modules --cov=./reconcile --cov-report=xml reconcile' | ||
|
||
[tool.hatch.envs.examples] | ||
dependencies = [ | ||
"gpjax>=0.5.0", | ||
"statsmodels>=0.13.2" | ||
] | ||
|
||
[tool.hatch.envs.test.scripts] | ||
lint = 'ruff check reconcile examples' | ||
test = 'pytest -v --doctest-modules --cov=./reconcile --cov-report=xml reconcile' | ||
|
||
[tool.hatch.envs.examples.scripts] | ||
reconciliation = 'python examples/reconciliation.py' | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.