forked from autogluon/fev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (59 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
69 lines (59 loc) · 1.59 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
[tool.ruff]
line-length = 119
lint.extend-select = ["I"]
lint.isort.known-first-party = ["fev"]
lint.isort.known-third-party = ["datasets", "numpy", "pandas", "scipy", "yaml"]
extend-include = ["*.ipynb"]
[project]
name = "fev"
readme = "README.md"
license = { file = "LICENSE" }
dynamic = ["version"]
requires-python = ">=3.10"
dependencies = [
"datasets[s3]>=2.15,<4.0",
"pydantic~=2.0",
"numpy",
"scipy",
]
description = "fev: Forecast evaluation library"
authors = [
{ name="Oleksandr Shchur", email="shchuro@amazon.com" },
{ name="Lorenzo Stella", email="stellalo@amazon.com" },
{ name="Caner Turkmen", email="atturkm@amazon.com" },
{ name="Abdul Fatir Ansari", email="ansarnd@amazon.com" },
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[project.urls]
Homepage = "https://github.com/autogluon/fev"
Issues = "https://github.com/autogluon/fev/issues"
[project.optional-dependencies]
test = [
"pytest",
"ruff",
"autogluon.timeseries>=1.1.1",
"nbformat",
"nbconvert",
"jupyter",
# Pin these versions to simplify dependency resolution for pip
"aiobotocore==2.26.0",
"botocore==1.41.5",
"boto3==1.41.5",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/fev"]
[tool.hatch.build.targets.sdist]
exclude = [
"benchmarks",
"examples",
]
[tool.hatch.version]
path = "src/fev/__about__.py"