Skip to content

Commit

Permalink
Fix pyproject.toml file to be PEP 518 compliant
Browse files Browse the repository at this point in the history
  • Loading branch information
tkoyama010 committed Sep 6, 2024
1 parent d76a3a4 commit c302ee5
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,22 @@ version = "0.2.dev0"
dependencies = [
'poetry-core>=1.0.0'
]
dynamic = [
"readme"
]

[tool.mypy]
ignore_missing_imports = true
strict = true
warn_unreachable = true
enable_error_code = ["ignore-without-code", "redundant-expr", "truthy-bool"]

[tool.poetry]
name = "sphinx-all-contributors"
readme = "README.md"
authors = ["Tetsuo Koyama"]
description = "all-contributors for Sphinx users"

[tool.pytest.ini_options]
minversion = "6.0"
addopts = ["-ra", "--showlocals", "--strict-markers", "--strict-config"]
Expand Down

0 comments on commit c302ee5

Please sign in to comment.