Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ repos:
- id: black
args: [--line-length=120]
- repo: https://github.com/pycqa/isort
rev: 7.0.0
rev: 8.0.1
hooks:
- id: isort
args:
Expand All @@ -41,7 +41,7 @@ repos:
- --profile black
- --project anemoi
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.14.14
rev: v0.15.4
hooks:
- id: ruff
args:
Expand All @@ -59,12 +59,12 @@ repos:
- id: docconvert
args: ["numpy"]
- repo: https://github.com/tox-dev/pyproject-fmt
rev: "v2.12.1"
rev: "v2.16.2"
hooks:
- id: pyproject-fmt
args: ["--max-supported-python", "3.12"]
- repo: https://github.com/jshwi/docsig # Check docstrings against function sig
rev: v0.77.0
rev: v0.79.0
hooks:
- id: docsig
args:
Expand Down
11 changes: 0 additions & 11 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,14 @@ requires = [ "setuptools>=60", "setuptools-scm>=8" ]

[project]
name = "anemoi-transform"

description = "A package to hold various data transformation functions to support training of ML models on ECMWF data."
readme = "README.md"
keywords = [ "ai", "tools" ]

license = { file = "LICENSE" }
authors = [
{ name = "European Centre for Medium-Range Weather Forecasts (ECMWF)", email = "software.support@ecmwf.int" },
]

requires-python = ">=3.11,<3.14"

classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
Expand All @@ -36,7 +32,6 @@ classifiers = [
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]

dynamic = [ "version" ]
dependencies = [
"anemoi-utils>=0.4.36",
Expand All @@ -48,10 +43,8 @@ dependencies = [
"healpy",
"pandas<3",
]

optional-dependencies.all = [ "anemoi-transform[plots]" ]
optional-dependencies.dev = [ "anemoi-transform[all,docs,tests]" ]

optional-dependencies.docs = [
"nbsphinx",
"numpydoc",
Expand All @@ -63,16 +56,12 @@ optional-dependencies.docs = [
"sphinx-rtd-theme",
"termcolor",
]

optional-dependencies.plots = [ "matplotlib" ]

optional-dependencies.tests = [ "pytest", "pytest-skip-slow" ]

urls.Documentation = "https://anemoi-transform.readthedocs.io/"
urls.Homepage = "https://github.com/ecmwf/anemoi-transform/"
urls.Issues = "https://github.com/ecmwf/anemoi-transform/issues"
urls.Repository = "https://github.com/ecmwf/anemoi-transform/"

scripts.anemoi-transform = "anemoi.transform.__main__:main"

[tool.setuptools_scm]
Expand Down
Loading