Skip to content

Commit

Permalink
✅ Fix pytest
Browse files Browse the repository at this point in the history
  • Loading branch information
Freed-Wu committed Feb 10, 2024
1 parent df4c06d commit 217b8b8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
Empty file added mdformat_ruff/py.typed
Empty file.
23 changes: 12 additions & 11 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,29 +2,29 @@
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"


[tool.poetry]
name = "mdformat-ruff"
version = "0.1.2" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT
version = "0.1.2" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT
authors = ["Wu Zhenyu <[email protected]>"]
description = "Mdformat plugin to ruffen Python code blocks"
repository = "https://github.com/Freed-Wu/mdformat-ruff"
readme = "README.md"
license = "MIT"
classifiers = [
"Topic :: Documentation",
"Topic :: Text Processing :: Markup",
"Typing :: Typed",
"Topic :: Documentation",
"Topic :: Text Processing :: Markup",
"Typing :: Typed",
]
keywords = ["mdformat", "markdown", "commonmark", "formatter"]

packages = [
{include = "mdformat_ruff"},
]
#include = ["mdformat_ruff/py.typed"]
packages = [{ include = "mdformat_ruff" }]
include = ["mdformat_ruff/py.typed"]

#[tool.poetry.urls]
#"Changelog" = "https://github.com/Freed-Wu/mdformat-ruff/blob/master/CHANGELOG.md"
[tool.poetry.urls]
Homepage = "https://mdformat-ruff.readthedocs.io"
Download = "https://github.com/Freed-Wu/mdformat-ruff/releases"
"Bug Report" = "https://github.com/Freed-Wu/mdformat-ruff/issues"
Source = "https://github.com/Freed-Wu/mdformat-ruff"

[tool.poetry.plugins."mdformat.codeformatter"]
"python" = "mdformat_ruff:format_python"
Expand All @@ -36,3 +36,4 @@ ruff = "*"
[tool.poetry.group.dev.dependencies]
# Tests
pytest-cov = "*"
mdformat = "*"

0 comments on commit 217b8b8

Please sign in to comment.