-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
46 lines (41 loc) · 914 Bytes
/
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
[build-system]
requires = ["setuptools ~= 75.1"]
build-backend = "setuptools.build_meta"
[project]
name = "gurobi_sphinxtheme"
version = "1.0.0"
description = "Gurobi Sphinx theme"
readme = "README.md"
dependencies = [
"furo",
]
[project.entry-points."sphinx.html_themes"]
gurobi_sphinxtheme = "gurobi_sphinxtheme"
docs_gurobi_com = "docs_gurobi_com"
[project.optional-dependencies]
docs_gurobi_com = [
"sphinx_sitemap>=2.6,<2.7",
"furo == 2024.1.29",
]
[tool.setuptools]
packages = [
"gurobi_sphinxtheme",
"docs_gurobi_com",
]
[tool.setuptools.package-data]
gurobi_sphinxtheme = [
"theme/theme.conf",
"theme/*.html",
"theme/static/*.svg",
"theme/static/*.css",
"theme/static/*.js",
]
docs_gurobi_com = [
"theme/theme.conf",
"theme/*.html",
"theme/static/*.svg",
"theme/static/*.css",
"theme/static/*.js",
"theme/static/*.ico",
"latex/*",
]