forked from pyOpenSci/python-package-guide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (41 loc) · 975 Bytes
/
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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "python-package-guide"
dynamic = [
"version"
]
dependencies = [
"pydata-sphinx-theme==0.15.2",
"myst-nb",
"sphinx",
"sphinx-autobuild",
"sphinx-copybutton",
"sphinx-design",
"sphinx-favicon",
# XML feed for analytics
"sphinx-sitemap",
# Support for social / adds meta tags
"sphinxext-opengraph",
"sphinx-inline-tabs",
# for project cards
"matplotlib",
]
[project.optional-dependencies]
dev = [
# for general build workflows
"nox",
# for prose linting
"vale",
# for managing translation files
"sphinx-intl",
]
[tool.hatch.build.targets.wheel]
bypass-selection = true
[tool.hatch]
version.source = "vcs"
# https://github.com/codespell-project/codespell#usage
[tool.codespell]
ignore-words = "codespell-ignore.txt"
skip = "./.git,./.nox,./_static,./_build,codespell-ignore.txt,*.svg"