-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (58 loc) · 1.55 KB
/
pyproject.toml
File metadata and controls
65 lines (58 loc) · 1.55 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
[project]
name = "forecopy"
version = "0.1.2"
description = "Forecast Reconciliation in Python"
authors = [
{name = "Daniele Girolimetto", email = "daniele.girolimetto@unipd.it"},
{name = "Bohan Zhang"},
]
maintainers = [
{name = "Daniele Girolimetto", email="daniele.girolimetto@unipd.it"},
]
requires-python = ">=3.10"
readme = "README.md"
license = "MIT"
keywords = ["forecasting", "reconciliation", "forecast", "time-series"]
classifiers = [
"Programming Language :: Python :: 3",
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS'
]
dependencies = [
"numpy>=2.0.2",
"pandas>=2.2.2",
"scipy>=1.14.1",
"jax>=0.4.31",
"lineax>=0.0.8"
]
[tool.setuptools]
packages = ["forecopy"]
[tool.uv.workspace]
members = [
".",
]
[tool.uv.sources]
forecopy = { workspace = true }
[dependency-groups]
dev = [
"forecopy",
"jupyterlab>=4.5.0",
"pytest>=9.0.1",
"pytest-cov",
"sphinx>=8",
"sphinxawesome-theme",
]
docs = ["sphinx", "sphinxawesome_theme"]
[project.urls]
homepage = "https://danigiro.github.io/FoRecoPy/"
documentation = "https://danigiro.github.io/FoRecoPy/overview.html"
source = "https://github.com/danigiro/FoRecoPy"
download = "https://pypi.org/project/forecopy/#files"
tracker = "https://github.com/danigiro/forecopy/issues"
changelog = "https://danigiro.github.io/FoRecoPy/changelog.html"
PyPI = "https://pypi.org/project/forecopy"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"