Skip to content

Commit

Permalink
Compact config one-liners
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Aug 24, 2024
1 parent e4831fb commit 81569d9
Showing 1 changed file with 6 additions and 18 deletions.
24 changes: 6 additions & 18 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@ keywords = [
"tiny type",
]
license = { text = "MIT" }
authors = [
{ name = "Hugo van Kemenade" },
]
authors = [ { name = "Hugo van Kemenade" } ]
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
Expand All @@ -38,9 +36,7 @@ classifiers = [
"Topic :: Artistic Software",
"Topic :: Text Processing",
]
dynamic = [
"version",
]
dynamic = [ "version" ]
optional-dependencies.tests = [
"pytest",
"pytest-cov",
Expand Down Expand Up @@ -89,15 +85,9 @@ lint.ignore = [
"S101", # Use of assert detected
]
lint.flake8-import-conventions.aliases.datetime = "dt"
lint.flake8-import-conventions.banned-from = [
"datetime",
]
lint.isort.known-first-party = [
"tinytext",
]
lint.isort.required-imports = [
"from __future__ import annotations",
]
lint.flake8-import-conventions.banned-from = [ "datetime" ]
lint.isort.known-first-party = [ "tinytext" ]
lint.isort.required-imports = [ "from __future__ import annotations" ]

[tool.pyproject-fmt]
max_supported_python = "3.13"
Expand All @@ -107,6 +97,4 @@ filterwarnings = [
# Python <= 3.11
"ignore:sys.monitoring isn't available, using default core:coverage.exceptions.CoverageWarning",
]
testpaths = [
"tests",
]
testpaths = [ "tests" ]

0 comments on commit 81569d9

Please sign in to comment.