-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (45 loc) · 1.64 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (45 loc) · 1.64 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "webifier-extensions"
version = "1.0.20"
description = "First-party extensions for Webifier static sites."
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "Vahid Zehtab", email = "contact@vahidz.com" },
]
dependencies = [
"beautifulsoup4",
"ipython",
"markupsafe",
"nbconvert>=7,<8",
"nbformat",
]
[project.optional-dependencies]
dev = [
"ruff",
]
[project.entry-points."webifier.extensions"]
"webifier.standard" = "webifier_extensions.standard.extension:StandardExtension"
"webifier.markdown" = "webifier_extensions.markdown.extension:MarkdownExtension"
"webifier.notebook" = "webifier_extensions.notebook.extension:NotebookExtension"
"webifier.pdf" = "webifier_extensions.pdf.extension:PdfExtension"
"webifier.search" = "webifier_extensions.search.extension:SearchExtension"
"webifier.theme" = "webifier_extensions.theme.extension:ThemeExtension"
"webifier.analytics.google" = "webifier_extensions.analytics.google.extension:GoogleAnalyticsExtension"
"webifier.comments" = "webifier_extensions.comments.extension:CommentsExtension"
"webifier.people" = "webifier_extensions.people.extension:PeopleExtension"
"webifier.chapters" = "webifier_extensions.chapters.extension:ChaptersExtension"
"webifier.resume" = "webifier_extensions.resume.extension:ResumeExtension"
[tool.hatch.build.targets.wheel]
packages = ["webifier_extensions"]
[tool.ruff]
target-version = "py310"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
[tool.ruff.lint.isort]
known-first-party = ["webifier_extensions"]