-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
46 lines (40 loc) · 1.29 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
[project]
name = "shibuya"
description = "A clean, responsive, and customizable Sphinx documentation theme with light/dark mode."
dynamic = ["version"]
readme = "README.md"
requires-python = ">=3.7"
dependencies = [
"Sphinx"
]
license = {text = "BSD-3-Clause"}
authors = [
{name = "Hsiaoming Yang", email = "[email protected]"},
]
classifiers = [
"Framework :: Sphinx",
"Framework :: Sphinx :: Theme",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Topic :: Documentation",
"Topic :: Software Development :: Documentation",
]
[project.entry-points]
"sphinx.html_themes" = {shibuya = "shibuya"}
[project.urls]
Source = "https://github.com/lepture/shibuya"
Documentation = "https://shibuya.lepture.com/"
Sponsors = "https://github.com/sponsors/lepture"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "shibuya.__version__"}