-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (43 loc) · 1.28 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[project]
authors = [{ name = "Cariad Eccleston", email = "[email protected]" }]
dependencies = ["lstr (>=1.0,<2.0)"]
description = "Extract plain text and front matter from Markdown documents"
dynamic = ["classifiers", "version"]
keywords = ["markdown", "text"]
license = { text = "MIT" }
name = "boringmd"
readme = "README.md"
requires-python = "~=3.9"
[project.scripts]
boringmd = "boringmd.__main__:cli_entry"
[project.urls]
homepage = "https://github.com/cariad/boringmd"
[tool.isort]
profile = "black"
[tool.poetry]
classifiers = [
"Environment :: Console",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Text Processing",
"Topic :: Text Processing :: Markup :: Markdown",
"Topic :: Utilities",
"Typing :: Typed",
]
version = "1.0"
[tool.poetry.group.dev.dependencies]
black = ">=25.0,<26.0"
flake8 = ">=7.0,<8.0"
isort = ">=6.0,<7.0"
mypy = ">=1.0,<2.0"
pytest = ">=8.0,<9.0"
pytest-cov = ">=6.0,<7.0"
yamllint = ">=1.0,<2.0"
[tool.pytest.ini_options]
addopts = "--cov=boringmd --cov-branch --cov-report=html --cov-report=term-missing:skip-covered --cov-report=xml --no-cov-on-fail"
log_cli = 1
log_cli_level = "DEBUG"
testpaths = "tests"