-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
72 lines (63 loc) · 1.95 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
61
62
63
64
65
66
67
68
69
70
71
72
# SPDX-FileCopyrightText: © 2022 Serhii “GooRoo” Olendarenko
#
# SPDX-License-Identifier: BSD-3-Clause
[project]
name = "mkdocs-obsidian-bridge"
version = "1.2.0"
description = "An MkDocs plugin that helps exporting your Obsidian vault as an MkDocs site."
authors = [{ name = "GooRoo", email = "[email protected]" }]
license = "BSD-3-Clause"
readme = "README.md"
requires-python = ">=3.10,<4"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Plugins",
"Framework :: MkDocs",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Topic :: Documentation",
"Topic :: Software Development :: Documentation",
"Topic :: Text Processing :: Markup :: HTML",
"Topic :: Text Processing :: Markup :: Markdown",
]
dependencies = [
"mkdocs >=1.4.2",
"markdown >=3.2.1",
"obsidian-callouts>=1.0.0",
"obsidian-media>=2.0.0",
]
[project.urls]
Homepage = "https://github.com/GooRoo/mkdocs-obsidian-bridge"
Issues = "https://github.com/GooRoo/mkdocs-obsidian-bridge/issues"
Repository = "https://github.com/GooRoo/mkdocs-obsidian-bridge.git"
[project.entry-points."mkdocs.plugins"]
obsidian-bridge = "mkdocs_obsidian_bridge.plugin:ObsidianBridgePlugin"
[tool.uv]
dev-dependencies = [
"yapf >=0.32.0",
"pylama[pylint,toml] >=8.4.1",
"ipykernel >=6.19.4",
]
[tool.uv.sources]
# obsidian-media = { path = "../obsidian-media", editable = true }
# obsidian-callouts = { path = "../obsidian-callouts", editable = true }
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
exclude = [
".gitignore",
".github/workflows/*",
".justfile",
]
[tool.pylama]
max_line_length = 120
[tool.yapf]
blank_line_before_nested_class_or_def = false
blank_lines_between_top_level_imports_and_variables = 2
coalesce_brackets = true
column_limit = 120
dedent_closing_brackets = true
spaces_around_power_operator = true
spaces_before_comment = 2