-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[pre-commit.ci] pre-commit autoupdate (#267)
* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/astral-sh/ruff-pre-commit: v0.4.3 → v0.4.4](astral-sh/ruff-pre-commit@v0.4.3...v0.4.4) - [github.com/tox-dev/pyproject-fmt: 1.8.0 → 2.0.4](tox-dev/pyproject-fmt@1.8.0...2.0.4) * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Fix Pyproject.toml spacing --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Alex Kerney <[email protected]>
- Loading branch information
1 parent
2bf2a15
commit 169e326
Showing
2 changed files
with
77 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,55 +2,57 @@ | |
build-backend = "setuptools.build_meta" | ||
requires = [ | ||
"setuptools>=42", | ||
"setuptools_scm[toml]>=6.2", | ||
"setuptools-scm[toml]>=6.2", | ||
] | ||
|
||
[project] | ||
name = "xpublish" | ||
description = "Publish Xarray Datasets via a REST API." | ||
readme = "README.md" | ||
keywords = [ | ||
'api', | ||
'xarray', | ||
'zarr', | ||
"api", | ||
"xarray", | ||
"zarr", | ||
] | ||
license = { file = "LICENSE" } | ||
maintainers = [ | ||
{ name = "Joe Hamman", email = "[email protected]" }, | ||
{ name = "Alex Kerney", email = "[email protected]" }, | ||
{ name = "Joe Hamman", email = "[email protected]" }, | ||
{ name = "Alex Kerney", email = "[email protected]" }, | ||
] | ||
requires-python = ">=3.9" | ||
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 :: Only', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.11', | ||
'Programming Language :: Python :: 3.12', | ||
'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 :: Only", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Topic :: Scientific/Engineering", | ||
] | ||
dynamic = [ | ||
"dependencies", | ||
"version", | ||
] | ||
[project.urls] | ||
"documentation" = "https://xpublish.readthedocs.io/" | ||
"repository" = "https://github.com/xpublish-community/xpublish" | ||
[project.entry-points."xpublish.plugin"] | ||
dataset_info = "xpublish.plugins.included.dataset_info:DatasetInfoPlugin" | ||
module_version = "xpublish.plugins.included.module_version:ModuleVersionPlugin" | ||
plugin_info = "xpublish.plugins.included.plugin_info:PluginInfoPlugin" | ||
zarr = "xpublish.plugins.included.zarr:ZarrPlugin" | ||
urls."documentation" = "https://xpublish.readthedocs.io/" | ||
urls."repository" = "https://github.com/xpublish-community/xpublish" | ||
entry-points."xpublish.plugin".dataset_info = "xpublish.plugins.included.dataset_info:DatasetInfoPlugin" | ||
entry-points."xpublish.plugin".module_version = "xpublish.plugins.included.module_version:ModuleVersionPlugin" | ||
entry-points."xpublish.plugin".plugin_info = "xpublish.plugins.included.plugin_info:PluginInfoPlugin" | ||
entry-points."xpublish.plugin".zarr = "xpublish.plugins.included.zarr:ZarrPlugin" | ||
|
||
[tool.setuptools] | ||
packages = ["xpublish"] | ||
packages = [ | ||
"xpublish", | ||
] | ||
|
||
[tool.setuptools.dynamic] | ||
dependencies = { file = ["requirements.txt"] } | ||
dependencies = { file = [ | ||
"requirements.txt", | ||
] } | ||
|
||
[tool.setuptools_scm] | ||
version_scheme = "post-release" | ||
|
@@ -65,32 +67,32 @@ line-length = 100 | |
|
||
[tool.ruff.lint] | ||
select = [ | ||
"B", # flake8-bugbear | ||
"C", | ||
'D', # pydocstyle | ||
"E", # pycodestyle | ||
"F", # Pyflakes | ||
"I", # isort | ||
"W", # pycodestyle | ||
# "T4", | ||
"B9", | ||
"B", # flake8-bugbear | ||
"C", | ||
'D', # pydocstyle | ||
"E", # pycodestyle | ||
"F", # Pyflakes | ||
"I", # isort | ||
"W", # pycodestyle | ||
# "T4", | ||
"B9", | ||
] | ||
ignore = [ | ||
"D100", # Missing docstring in public module | ||
"D107", # Missing docstring in `__init__` | ||
"D104", # Missing docstring in public package | ||
"D105", # Missing docstring in magic method | ||
# "E203", | ||
# "E266", | ||
"E501", | ||
# "W503", | ||
"E722", | ||
"E402", | ||
"C901", | ||
"D100", # Missing docstring in public module | ||
"D107", # Missing docstring in `__init__` | ||
"D104", # Missing docstring in public package | ||
"D105", # Missing docstring in magic method | ||
# "E203", | ||
# "E266", | ||
"E501", | ||
# "W503", | ||
"E722", | ||
"E402", | ||
"C901", | ||
] | ||
exclude = [ | ||
"tests/", | ||
"docs/", | ||
"tests/", | ||
"docs/", | ||
] | ||
|
||
[tool.ruff.lint.per-file-ignores] | ||
|
@@ -111,24 +113,26 @@ max-complexity = 18 | |
|
||
[tool.ruff.lint.isort] | ||
combine-as-imports = true | ||
known-first-party = ["xpublish"] | ||
known-first-party = [ | ||
"xpublish", | ||
] | ||
known-third-party = [ | ||
"cachey", | ||
"dask", | ||
"fastapi", | ||
"numcodecs", | ||
"numpy", | ||
"pandas", | ||
"pkg_resources", | ||
"pluggy", | ||
"pydantic", | ||
"pytest", | ||
"setuptools", | ||
"sphinx_autosummary_accessors", | ||
"starlette", | ||
"uvicorn", | ||
"xarray", | ||
"zarr", | ||
"cachey", | ||
"dask", | ||
"fastapi", | ||
"numcodecs", | ||
"numpy", | ||
"pandas", | ||
"pkg_resources", | ||
"pluggy", | ||
"pydantic", | ||
"pytest", | ||
"setuptools", | ||
"sphinx_autosummary_accessors", | ||
"starlette", | ||
"uvicorn", | ||
"xarray", | ||
"zarr", | ||
] | ||
|
||
[tool.ruff.lint.pydocstyle] | ||
|
@@ -141,7 +145,11 @@ docstring-quotes = "double" | |
|
||
[tool.ruff.lint.flake8-bugbear] | ||
# Allow fastapi.Depends and other dependency injection style function arguments | ||
extend-immutable-calls = ["fastapi.Depends", "fastapi.Query", "fastapi.Path"] | ||
extend-immutable-calls = [ | ||
"fastapi.Depends", | ||
"fastapi.Query", | ||
"fastapi.Path", | ||
] | ||
|
||
[tool.pytest.ini_options] | ||
log_cli = true | ||
|