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
|
[build-system]
requires = ["flit_core>=3.7"]
build-backend = "flit_core.buildapi"
# project metadata
[project]
name = "alabaster"
description = "A light, configurable Sphinx theme"
readme = "README.rst"
urls.Changelog = "https://alabaster.readthedocs.io/en/latest/changelog.html"
urls.Documentation = "https://alabaster.readthedocs.io/"
urls.Download = "https://pypi.org/project/alabaster/"
urls.Homepage = "https://alabaster.readthedocs.io/"
urls."Issue tracker" = "https://github.com/bitprophet/alabaster/issues"
urls.Source = "https://github.com/sphinx-doc/alabaster"
license.text = "BSD-3-Clause"
requires-python = ">=3.9"
# Classifiers list: https://pypi.org/classifiers/
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Sphinx",
"Framework :: Sphinx :: Theme",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Documentation",
"Topic :: Documentation :: Sphinx",
"Topic :: Software Development :: Documentation",
]
dependencies = []
dynamic = ["version"]
[[project.authors]]
name = "Jeff Forcier"
email = "jeff@bitprophet.org"
[[project.maintainers]]
name = "The Sphinx Developers"
[project.entry-points."sphinx.html_themes"]
alabaster = "alabaster"
[tool.flit.sdist]
include = [
"LICENSE.rst",
# Documentation
"docs/",
]
|