diff --git a/pyproject.toml b/pyproject.toml index 4baf7fe..dfaafcb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,8 +15,10 @@ keywords = [ "endoflife", "eol", ] -license = {text = "MIT"} -authors = [{name = "Hugo van Kemenade"}] +license = { text = "MIT" } +authors = [ + { name = "Hugo van Kemenade" }, +] requires-python = ">=3.8" classifiers = [ "Development Status :: 3 - Alpha", @@ -30,9 +32,6 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", - "Programming Language :: Python :: 3.13", - "Programming Language :: Python :: Implementation :: CPython", - "Programming Language :: Python :: Implementation :: PyPy", ] dynamic = [ "version", @@ -46,21 +45,17 @@ dependencies = [ "python-slugify", "termcolor>=2.1", ] -[project.optional-dependencies] -tests = [ +optional-dependencies.tests = [ "freezegun", "pytest", "pytest-cov", "respx>=0.11", ] -[project.urls] -Changelog = "https://github.com/hugovk/norwegianblue/releases" -Homepage = "https://github.com/hugovk/norwegianblue" -Source = "https://github.com/hugovk/norwegianblue" -[project.scripts] -eol = "norwegianblue.cli:main" -norwegianblue = "norwegianblue.cli:main" - +urls.Changelog = "https://github.com/hugovk/norwegianblue/releases" +urls.Homepage = "https://github.com/hugovk/norwegianblue" +urls.Source = "https://github.com/hugovk/norwegianblue" +scripts.eol = "norwegianblue.cli:main" +scripts.norwegianblue = "norwegianblue.cli:main" [tool.hatch] version.source = "vcs" @@ -70,20 +65,28 @@ local_scheme = "no-local-version" [tool.ruff] fix = true +[tool.ruff.lint.isort] +known-first-party = [ + "norwegianblue", +] +required-imports = [ + "from __future__ import annotations", +] + [tool.ruff.lint] select = [ - "C4", # flake8-comprehensions - "E", # pycodestyle errors - "EM", # flake8-errmsg - "F", # pyflakes errors - "I", # isort - "ISC", # flake8-implicit-str-concat - "LOG", # flake8-logging - "PGH", # pygrep-hooks + "C4", # flake8-comprehensions + "E", # pycodestyle errors + "EM", # flake8-errmsg + "F", # pyflakes errors + "I", # isort + "ISC", # flake8-implicit-str-concat + "LOG", # flake8-logging + "PGH", # pygrep-hooks "RUF100", # unused noqa (yesqa) - "UP", # pyupgrade - "W", # pycodestyle warnings - "YTT", # flake8-2020 + "UP", # pyupgrade + "W", # pycodestyle warnings + "YTT", # flake8-2020 ] extend-ignore = [ "E203", # Whitespace before ':' @@ -92,9 +95,5 @@ extend-ignore = [ "E241", # Multiple spaces after ',' ] -[tool.ruff.lint.isort] -known-first-party = ["norwegianblue"] -required-imports = ["from __future__ import annotations"] - [tool.pytest.ini_options] addopts = "--color=yes"