aboutsummaryrefslogtreecommitdiff
blob: e23bf89a5bd96a5624c4599739f7f6c9e903f647 (plain)
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[project]
name = "tyrian-sphinx-theme"
authors = [
    {name = "Max Magorsch", email = "max@magorsch.de"},
]
description = "A Tyrian based Sphinx theme for Gentoo"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.8"
license = {text = "BSD-2-Clause"}
classifiers = [
    "Framework :: Sphinx",
    "Framework :: Sphinx :: Theme",
    "Operating System :: OS Independent",
    "License :: OSI Approved :: BSD License",
    "Programming Language :: Python :: 3",
]
dynamic = ["version"]

[project.urls]
Homepage = "https://gitweb.gentoo.org/proj/tyrian-sphinx-theme.git"

[project.entry-points."sphinx.html_themes"]
tyrian_sphinx_theme = "tyrian_sphinx_theme"

[tool.setuptools]
packages = ["tyrian_sphinx_theme"]

[tool.setuptools.package-data]
tyrian_sphinx_theme = [
    "theme.conf",
    "*.html",
    "static/*.css",
    "static/*.css_t",
]

[tool.setuptools.dynamic]
version = {attr = "tyrian_sphinx_theme.__version__"}