forked from napari/napari-sphinx-theme
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
66 lines (54 loc) · 1.4 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "napari_sphinx_theme"
description = "Bootstrap-based Sphinx theme from the napari community"
dynamic = ["version"]
readme = "README.md"
authors = [ {name = "napari team" }]
requires-python = ">=3.7"
dependencies = [
"pydata-sphinx-theme>=0.15.3",
"packaging",
]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Framework :: Sphinx",
"Framework :: Sphinx :: Theme",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
doc = [
"numpydoc",
]
dev = [
"pyyaml",
"pre-commit",
"nox",
"napari-sphinx-theme[coverage]",
]
[project.entry-points."sphinx.html_themes"]
napari_sphinx_theme = "napari_sphinx_theme"
[project.urls]
homepage = "https://napari.org/napari-sphinx-theme/"
repository = "https://github.com/napari/napari-sphinx-theme"
[tool.setuptools]
packages = ["napari_sphinx_theme"]
zip-safe = false
[tool.setuptools_scm]
version_file = "napari_sphinx_theme/_version.py"
[tool.setuptools.package-data]
napari_sphinx_theme = [
"theme.conf",
"*.html",
"static/css/*.css",
"components/*.html",
"partials/*.html",
"scripts/*.js",
]
[project.entry-points."pygments.styles"]
napari = "napari_sphinx_theme:NapariCodeTheme"