Skip to content

Commit

Permalink
correct formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
makermotion committed Dec 21, 2024
1 parent e498854 commit 997f244
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
keywords = []
authors = [{ name = "Adam Fourney", email = "[email protected]" }]
authors = [
{ name = "Adam Fourney", email = "[email protected]" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
Expand Down Expand Up @@ -53,22 +55,30 @@ 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}"

[tool.coverage.run]
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"]

0 comments on commit 997f244

Please sign in to comment.