-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (31 loc) · 845 Bytes
/
pyproject.toml
File metadata and controls
33 lines (31 loc) · 845 Bytes
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
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling", "hatch-vcs"]
[project]
name = "deepgroundwater.github.io"
description = "DeepGroundwater blog site"
requires-python = ">=3.10"
license = {file = "LICENSE"}
authors = [
{name = "Tadd Bindas"},
{name = "Jonathan Frame"},
{name = "Ryoko Araki"},
]
maintainers = [
{name = "Tadd Bindas", email = "taddbindas@gmail.com"},
{name = "Jonathan Frame"},
{name = "Ryoko Araki"},
]
dependencies = [
"pillow",
"cairosvg",
"mkdocs-material",
"mkdocs-git-committers-plugin",
"mkdocs-material-extensions",
"mkdocs-git-authors-plugin",
"mkdocs-git-revision-date-localized-plugin",
]
dynamic = ["version"] # Add this line to indicate dynamic versioning
[tool.hatch]
version.source = "vcs"
build.hooks.vcs.version-file = "_version.py"