Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jun 3, 2024
1 parent 290551e commit f19575d
Showing 1 changed file with 32 additions and 26 deletions.
58 changes: 32 additions & 26 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=42",
"setuptools_scm",
"setuptools-scm",
"wheel",
]

[project]
name = "erddapy"
description = "Python interface for ERDDAP"
readme = "README.md"
license = {file = "LICENSE.txt"}
license = { file = "LICENSE.txt" }
maintainers = [
{name = "Alex Kerney", email = "[email protected]"},
{name = "Callum Rollo", email = "[email protected]"},
{name = "Filipe Fernandes", email = "[email protected]"},
{ name = "Alex Kerney", email = "[email protected]" },
{ name = "Callum Rollo", email = "[email protected]" },
{ name = "Filipe Fernandes", email = "[email protected]" },
]
requires-python = ">=3.10"
classifiers = [
Expand All @@ -27,17 +27,20 @@ dynamic = [
"dependencies",
"version",
]
[project.urls]
documentation = "https://ioos.github.io/erddapy"
homepage = "https://github.com/ioos/erddapy"
repository = "https://github.com/ioos/erddapy"
urls.documentation = "https://ioos.github.io/erddapy"
urls.homepage = "https://github.com/ioos/erddapy"
urls.repository = "https://github.com/ioos/erddapy"

[tool.setuptools]
packages = ["erddapy"]
packages = [
"erddapy",
]
include-package-data = true

[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
dependencies = { file = [
"requirements.txt",
] }

[tool.setuptools_scm]
write_to = "erddapy/_version.py"
Expand All @@ -46,26 +49,26 @@ tag_regex = "^(?P<prefix>v)?(?P<version>[^\\+]+)(?P<suffix>.*)?$"

[tool.check-manifest]
ignore = [
"*.yml",
".coveragerc",
"Makefile",
"docs",
"docs/*",
"notebooks",
"notebooks/*",
"tests",
"tests/*",
"*.yml",
".coveragerc",
"Makefile",
"docs",
"docs/*",
"notebooks",
"notebooks/*",
"tests",
"tests/*",
]

[tool.pytest.ini_options]
markers = [
"web: marks tests require connection (deselect with '-m \"not web\"')",
"serial: marks tests that cannot be run in parallel (deselect with '-m \"not serial\"')",
"web: marks tests require connection (deselect with '-m \"not web\"')",
"serial: marks tests that cannot be run in parallel (deselect with '-m \"not serial\"')",
]
filterwarnings = [
"error:::erddapy.*",
"ignore::UserWarning",
"ignore::RuntimeWarning",
"error:::erddapy.*",
"ignore::UserWarning",
"ignore::RuntimeWarning",
]

[tool.interrogate]
Expand All @@ -76,7 +79,10 @@ ignore-semiprivate = false
ignore-private = false
ignore-module = false
fail-under = 85
exclude = ["docs", "tests"]
exclude = [
"docs",
"tests",
]
verbose = 1
quiet = false
color = true

0 comments on commit f19575d

Please sign in to comment.