From 997f244d8f11da3f5aa5f21e644f8607078aba70 Mon Sep 17 00:00:00 2001 From: makermotion <22776403+makermotion@users.noreply.github.com> Date: Sun, 22 Dec 2024 01:01:04 +0300 Subject: [PATCH] correct formatting --- pyproject.toml | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 741207d..67f6825 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,9 @@ readme = "README.md" requires-python = ">=3.10" license = "MIT" keywords = [] -authors = [{ name = "Adam Fourney", email = "adamfo@microsoft.com" }] +authors = [ + { name = "Adam Fourney", email = "adamfo@microsoft.com" }, +] classifiers = [ "Development Status :: 4 - Beta", "Programming Language :: Python", @@ -53,7 +55,9 @@ path = "src/markitdown/__about__.py" markitdown = "markitdown.__main__:main" [tool.hatch.envs.types] -extra-dependencies = ["mypy>=1.0.0"] +extra-dependencies = [ + "mypy>=1.0.0", +] [tool.hatch.envs.types.scripts] check = "mypy --install-types --non-interactive {args:src/markitdown tests}" @@ -61,14 +65,20 @@ check = "mypy --install-types --non-interactive {args:src/markitdown tests}" source_pkgs = ["markitdown", "tests"] branch = true parallel = true -omit = ["src/markitdown/__about__.py"] +omit = [ + "src/markitdown/__about__.py", +] [tool.coverage.paths] markitdown = ["src/markitdown", "*/markitdown/src/markitdown"] tests = ["tests", "*/markitdown/tests"] [tool.coverage.report] -exclude_lines = ["no cov", "if __name__ == .__main__.:", "if TYPE_CHECKING:"] +exclude_lines = [ + "no cov", + "if __name__ == .__main__.:", + "if TYPE_CHECKING:", +] [tool.hatch.build.targets.sdist] only-include = ["src/markitdown"]