-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
59 lines (52 loc) · 1.39 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "adi-doctools"
description = "ADI's sphinx extensions and theme"
readme = "README.rst"
authors = [
{name = "Jorge Marques", email="[email protected]"}
]
license = {text = "BSD-3-Clause"}
classifiers = [
"Development Status :: 1 - Planning",
"Framework :: Sphinx",
"Framework :: Sphinx :: Theme",
"Framework :: Sphinx :: Extension",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Documentation",
"Topic :: Text Processing :: Markup",
"Topic :: Text Processing :: Markup :: reStructuredText",
]
dependencies = [
"docutils",
"sphinx",
"lxml",
"click",
"pygments >= 2.7",
]
requires-python = ">=3.8"
dynamic = ["version"]
[project.optional-dependencies]
ci = [
"selenium"
]
[tool.setuptools.packages.find]
where = [""]
include = ["adi_doctools*"]
namespaces = true
[tool.setuptools.dynamic]
version = {attr = "adi_doctools.__version__"}
[project.entry-points."sphinx.html_themes"]
cosmic = 'adi_doctools'
[project.scripts]
adoc = "adi_doctools.cli:entry_point"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]