-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
60 lines (50 loc) · 1.38 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
51
52
53
54
55
56
57
58
59
60
[project]
name = "rst-in-md"
dynamic = ["version"]
description = "Convert reStructuredText within Markdown to HTML."
authors = [{name = "Seb Pretzer", email = "24555985+sebpretzer@users.noreply.github.com"}]
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.9,<3.13"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"Markdown >=3.5.0",
"docutils >=0.21.0",
"beautifulsoup4 >=4.12.0",
]
[project.optional-dependencies]
pymdownx = ["pymdown-extensions >=10.0.0"]
ci = ["pre-commit >=3.0.0"]
test = ["pytest >=7.0.0"]
docs = [
"mkdocs >=1.5.0",
"mkdocs-material >=9.0.0",
"mkdocstrings[python] >=0.12.0",
"mkdocs-git-revision-date-localized-plugin >=1.2.0",
]
publishing = ["hatch >=1.12.0"]
[project.urls]
Documentation = "https://sebpretzer.github.io/rst-in-md/"
Source = "https://github.com/sebpretzer/rst-in-md"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
target-version = "py311"
[tool.ruff.lint]
select = ["ALL"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.format]
docstring-code-format = true
[tool.ruff.lint.per-file-ignores]
"tests/**" = ["ANN", "D", "INP", "PLR2004", "S101"]
[tool.pyright]
venvPath = "."
venv = ".venv"
[tool.hatch.version]
path = "rst_in_md/__init__.py"