-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (42 loc) · 1.25 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "sphinx-conestack-theme"
description = "Mobile friendly Bootstrap 5 based Sphinx theme"
version = "1.0.2.dev0"
requires-python = ">=3.9"
license = { text = "BSD 2-Clause License" }
authors = [
{ name = "Cone Contributors", email = "dev@conestack.org" },
]
keywords = [
"Sphinx",
"conestack",
"theme",
]
classifiers = [
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Software Development :: Documentation",
]
dependencies = [
"Sphinx==5.0.0",
]
dynamic = ["readme"]
[project.entry-points."sphinx.html_themes"]
conestack = "sphinx_conestack_theme"
[project.urls]
Homepage = "https://conestack.github.io/sphinx-conestack-theme"
Code = "https://github.com/conestack/sphinx-conestack-theme"
[tool.setuptools]
packages = ["sphinx_conestack_theme"]
[tool.setuptools.dynamic]
readme = {file = ["README.rst", "CHANGES.rst", "LICENSE.rst"], content-type = "text/x-rst"}
[tool.zest.releaser]
create-wheel = true