diff --git a/README.md b/README.md index ef34909..eba550c 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,8 @@ -# `fev` -Utilities for evaluating time series forecasting models. - +# fev: Forecast evaluation library `fev` adds a thin wrapper on top of the Hugging Face (HF) [`datasets`](https://huggingface.co/docs/datasets/en/index) library, resulting in a lightweight but fully functional benchmarking solution. Specifically, this package makes it easy to -- define forecasting tasks +- define time series forecasting tasks - load time series data and generate train-test splits - evaluate model predictions diff --git a/pyproject.toml b/pyproject.toml index 6f16bf6..7d928be 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -55,5 +55,11 @@ 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" diff --git a/src/fev/__about__.py b/src/fev/__about__.py index 38a8057..3dc1f76 100644 --- a/src/fev/__about__.py +++ b/src/fev/__about__.py @@ -1 +1 @@ -__version__ = "0.0.1a2" +__version__ = "0.1.0"