-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
67 lines (58 loc) · 1.7 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
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2", "wheel"]
build-backend = 'setuptools.build_meta'
[project]
name = "sunpy-sphinx-theme"
authors = [
{name = "The SunPy Developers"},
]
description = "The sphinx theme for the SunPy website and documentation."
dynamic = ["version"]
readme = "README.md"
license = { file = "LICENSE.md" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Framework :: Sphinx",
"Framework :: Sphinx :: Theme",
"Operating System :: OS Independent",
"License :: OSI Approved :: BSD License",
]
requires-python = ">=3.9"
dependencies = [
"pydata-sphinx-theme~=0.16.0",
"sphinx"
]
[project.optional-dependencies]
docs = [
"matplotlib",
"sphinx-automodapi",
"sphinx-copybutton",
"sphinx-design",
"sphinx-gallery",
"sphinx-hoverxref",
"sphinx-togglebutton",
"sunpy",
]
[project.entry-points]
"sphinx.html_themes" = { sunpy = "sunpy_sphinx_theme" }
[tool.setuptools]
include-package-data = true
[tool.setuptools_scm]
[ tool.gilesbot ]
[ tool.gilesbot.circleci_artifacts.giles ]
enabled = false
[ tool.gilesbot.circleci_artifacts.website ]
url = "sunpy.org/_build/html/index.html"
message = "SunPy website preview"
report_on_fail = true
[ tool.gilesbot.circleci_artifacts.sunpy_docs ]
url = "sunpy_docs/sunpy/docs/_build/html/index.html"
message = "sunpy docs preview"
report_on_fail = true
[ tool.gilesbot.circleci_artifacts.sunpy_docs-devdeps ]
url = "sunpy_docs-devdeps/sunpy/docs/_build/html/index.html"
message = "sunpy docs with devdeps preview"
report_on_fail = true