Skip to content

Commit

Permalink
Sort pyproject tools in alphabetical order
Browse files Browse the repository at this point in the history
  • Loading branch information
PierreF committed Jan 14, 2024
1 parent dd87ce4 commit ec1a834
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,15 @@ proxy = [
[project.urls]
Homepage = "http://eclipse.org/paho"

[tool.hatch.version]
path = "src/paho/mqtt/__init__.py"
[tool.coverage.report]
exclude_also = [
"@(abc\\.)?abstractmethod",
"def __repr__",
"except ImportError:",
"if TYPE_CHECKING:",
"raise AssertionError",
"raise NotImplementedError",
]

[tool.hatch.build.targets.sdist]
include = [
Expand All @@ -67,6 +74,10 @@ include = [
"src/paho",
]

[tool.hatch.version]
path = "src/paho/mqtt/__init__.py"


[tool.mypy]

[[tool.mypy.overrides]]
Expand Down Expand Up @@ -117,16 +128,6 @@ line-length = 167
"S106",
]

[tool.coverage.report]
exclude_also = [
"@(abc\\.)?abstractmethod",
"def __repr__",
"except ImportError:",
"if TYPE_CHECKING:",
"raise AssertionError",
"raise NotImplementedError",
]

[tool.typos.default.extend-words]
Mosquitto = "Mosquitto"

Expand Down

0 comments on commit ec1a834

Please sign in to comment.