-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (35 loc) · 1006 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "atsphinx-highlightjs"
authors = [{name = "Kazuya Takei", email = "[email protected]"}]
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: Sphinx",
"Framework :: Sphinx :: Extension",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"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 :: Documentation :: Sphinx",
]
readme = "README.rst"
dependencies = [
"sphinx",
]
dynamic = ["version", "description"]
[project.optional-dependencies]
test = [
"pytest ==7.*",
]
[project.urls]
Home = "https://github.com/atsphinx/highlightjs"
[tool.flit.module]
name = "atsphinx.highlightjs"
[tool.flit.sdist]
exclude = [".github", "tests"]