-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (50 loc) · 1.65 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
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[project]
authors = [{ name = "marimo team", email = "myles@marimo.io" }]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = ["htmlmin>=0.1.12,<0.2", "marimo>=0.8.15", "mkdocs>=1.5.2,<2"]
description = "MkDocs marimo plugin"
license = "Apache-2.0"
name = "mkdocs-marimo"
readme = "README.md"
requires-python = ">=3.9"
version = "0.1.2"
[project.entry-points."mkdocs.plugins"]
marimo = "mkdocs_marimo.plugin:MarimoPlugin"
[project.urls]
Documentation = "https://github.com/marimo-team/mkdocs-marimo#readme"
Homepage = "https://github.com/marimo-team/mkdocs-marimo"
Source = "https://github.com/marimo-team/mkdocs-marimo"
Tracker = "https://github.com/marimo-team/mkdocs-marimo/issues"
[tool.hatch.build.targets.sdist]
include = ["/mkdocs_marimo", "/tests"]
[tool.hatch.build.targets.wheel]
exclude = ["/tests"]
[tool.ruff]
line-length = 100
[tool.ruff.format]
indent-style = "space"
quote-style = "double"
[tool.ruff.lint]
ignore = [
"F841", # https://docs.astral.sh/ruff/rules/unused-variable/
"F821", # https://docs.astral.sh/ruff/rules/undefined-name/
]
[tool.mypy]
disable_error_code = "no-redef"
[[tool.mypy.overrides]]
ignore_missing_imports = true
module = ["htmlmin"]