-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (61 loc) · 1.69 KB
/
pyproject.toml
File metadata and controls
67 lines (61 loc) · 1.69 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
[build-system]
requires = ["uv_build>=0.7.19,<1.0.0"]
build-backend = "uv_build"
[project]
name = "datasetsforecast"
version = "1.0.1"
description = "Datasets for Time series forecasting"
authors = [{name = "Nixtla", email = "business@nixtla.io"}]
license = {text = "MIT License"}
readme = "README.md"
requires-python = ">=3.10"
keywords = ["time-series", "forecasting", "datasets"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"aiohttp",
"numpy",
"scikit-learn",
"pandas[plot]<3.0.0",
"requests",
"tqdm",
"utilsforecast>=0.0.8",
"xlrd>=1.0.0",
]
[dependency-groups]
dev = [
"pre-commit",
"pytest",
"pytest-cov",
"pytest-asyncio",
"pip-licenses",
"mkdocstrings-parser@git+https://github.com/Nixtla/mkdocstrings-parser.git",
"types-requests>=2.32.4.20260107",
]
[project.urls]
Homepage = "https://github.com/Nixtla/datasetsforecast"
Repository = "https://github.com/Nixtla/datasetsforecast"
Documentation = "https://nixtlaverse.nixtla.io/datasetsforecast/"
[tool.uv.build-backend]
module-root = "."
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = [
"--cov=datasetsforecast",
"--cov-report=term-missing",
"--cov-report=html",
"--cov-fail-under=60", #TODO: revert to 80 once coverage is improved
]
[tool.coverage.run]
omit = [
"datasetsforecast/favorita/*"
]