-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (54 loc) Β· 1.7 KB
/
pyproject.toml
File metadata and controls
61 lines (54 loc) Β· 1.7 KB
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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pytorch_sphinx_theme"
version = "0.0.24"
authors = [
{name = "Shift Lab", email = "info@shiftlabny.com"},
]
description = "PyTorch Sphinx Theme"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet",
"Topic :: Software Development :: Documentation",
]
dependencies = [
"sphinx>=4.0.0",
"docutils>=0.18.1,<0.21",
]
[project.urls]
Homepage = "https://github.com/pytorchkorea/pytorch_sphinx_theme"
Repository = "https://github.com/pytorchkorea/pytorch_sphinx_theme"
Issues = "https://github.com/pytorchkorea/pytorch_sphinx_theme/issues"
[project.entry-points."sphinx.html_themes"]
pytorch_sphinx_theme = "pytorch_sphinx_theme"
[tool.setuptools.packages.find]
include = ["pytorch_sphinx_theme*"]
[tool.setuptools.package-data]
pytorch_sphinx_theme = [
"theme.conf",
"*.html",
"static/css/*.css",
"static/js/*.js",
"static/js/vendor/*.js",
"static/fonts/FreightSans/*",
"static/fonts/IBMPlexMono/*",
"static/images/*.*",
"theme_variables.jinja"
]