forked from sunpy/sunpy-sphinx-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
72 lines (63 loc) · 1.63 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
68
69
70
71
72
[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 :: 4 - Beta",
"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.7"
dependencies = [
"sphinx-bootstrap-theme",
"sphinx<6"
]
[project.entry-points]
"sphinx.html_themes" = { sunpy = "sunpy_sphinx_theme" }
[tool.setuptools]
include-package-data = true
[tool.setuptools_scm]
[tool.black]
line-length = 120
target-version = ["py39"]
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.tox
| \.venv
| _build
| build
| dist
| \.history
)/
'''
[ tool.gilesbot ]
[ tool.gilesbot.circleci_artifacts.giles ]
enabled = false
[ tool.gilesbot.circleci_artifacts.testpackage ]
url = "test_package/docs/_build/html/index.html"
message = "testpackage docs preview"
report_on_fail = true
[ tool.gilesbot.circleci_artifacts.website ]
url = "sunpy.org/_build/html/index.html"
message = "SunPy website preview"
report_on_fail = true
[ tool.gilesbot.circleci_artifacts.sunpydocs ]
url = "sunpy/docs/_build/html/index.html"
message = "sunpy docs preview"
report_on_fail = true