diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 5d37d4af..0230178c 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -14,13 +14,12 @@ repos: - id: debug-statements - id: mixed-line-ending - repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks - rev: v2.5.0 + rev: v2.6.0 hooks: - id: pretty-format-yaml args: [--autofix, --preserve-quotes] - id: pretty-format-toml args: [--autofix] - additional_dependencies: [toml-sort<0.22.0] - repo: https://github.com/pycqa/isort rev: 5.11.4 hooks: diff --git a/pyproject.toml b/pyproject.toml index d9d8c095..08046872 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,27 +2,27 @@ requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"] [project] -name = "oceanspy" -description = "A Python package to facilitate ocean model data analysis and visualization." -readme = "README.rst" -license = {file = "LICENSE"} classifiers = [ - "Development Status :: 4 - Beta", - "Intended Audience :: Science/Research", - "License :: OSI Approved :: MIT License", - "Operating System :: OS Independent", - "Programming Language :: Python", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.9", - "Programming Language :: Python :: 3.10", - "Topic :: Scientific/Engineering" + "Development Status :: 4 - Beta", + "Intended Audience :: Science/Research", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Topic :: Scientific/Engineering" ] -dynamic = ["version"] dependencies = [ - "dask", - "xarray >= 0.14.1", - "xgcm >= 0.2.0" - ] + "dask", + "xarray >= 0.14.1", + "xgcm >= 0.2.0" +] +description = "A Python package to facilitate ocean model data analysis and visualization." +dynamic = ["version"] +license = {file = "LICENSE"} +name = "oceanspy" +readme = "README.rst" requires-python = ">=3.9" [tool.coverage.run] @@ -32,8 +32,8 @@ branch = true profile = "black" [tool.pytest.ini_options] -testpaths = ["oceanspy/tests"] addopts = "-v --cov" +testpaths = ["oceanspy/tests"] [tool.setuptools] packages = ["oceanspy"]