-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
65 lines (56 loc) · 1.74 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "sphinx-theme-builder"
dynamic = ["version"]
authors = [
{name = "Pradyun Gedam", email = "mail@pradyunsg.me"},
]
description = "A tool for authoring Sphinx themes with a simple (opinionated) workflow."
readme = "README.md"
license = { file = "LICENSE" }
dependencies = [
"pyproject-metadata",
"packaging",
"rich", # for output styling
"nodeenv", # for NodeJS isolation
"setuptools", # for nodeenv
"tomli ; python_version < '3.11'", # for pyproject.toml parsing
"typing_extensions ; python_version <= '3.7'", # for Protocol
]
requires-python = ">=3.7"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Framework :: Sphinx",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3",
"Topic :: Documentation",
"Topic :: Software Development :: Documentation",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.optional-dependencies]
cli = [
"build",
"click",
"sphinx-autobuild",
]
[project.urls]
Documentation = "https://sphinx-theme-builder.readthedocs.io/en/latest/"
Source = "https://github.com/pradyunsg/sphinx-theme-builder"
[project.scripts]
stb = "sphinx_theme_builder._internal.cli:main"
[tool.flit.module]
name = "sphinx_theme_builder"
[tool.coverage.report]
exclude_lines = [
# Use a clearer message for what to skip
"coverage: skip",
# Don't complain if code that needs to be run as main isn't run
"if __name__ == .__main__.:",
]