-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
72 lines (63 loc) · 2.16 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
66
67
68
69
70
71
72
# This file is generated from sphinx-notes/cookiecutter.
# You need to consider modifying the TEMPLATE or modifying THIS FILE.
# This file is used to configure your project.
# Read more about the various options under:
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata/#declaring-project-metadata
[project]
name = "sphinxnotes-strike"
description = "An extension that adds strikethrough text support to Sphinx"
readme = "README.rst"
license = { file = "BSD-3-Clause" }
authors = [ { name = "Shengyu Zhang" } ]
maintainers = [ { name = "Shengyu Zhang" } ]
keywords = ["sphinx", "extension", "documentation"] # TOOD: additional_keywords
classifiers = [
# "Development Status :: 4 - Beta",
"Environment :: Plugins",
"Framework :: Sphinx",
"Framework :: Sphinx :: Extension",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Documentation",
"Topic :: Documentation :: Sphinx",
]
requires-python = ">=3.8"
dependencies = [
"Sphinx >= 4",
]
dynamic = ["version"] # required by setuptools_scm, see section [build-system]
[project.optional-dependencies]
dev = [
"build",
"twine",
"cruft",
]
test = [
"pytest",
]
docs = [
"furo",
"sphinxnotes-any",
"sphinx_design",
"sphinx_copybutton",
"sphinxcontrib-gtagjs",
]
[project.urls]
homepage = "https://sphinx.silverrainz.me/strike"
documentation = "https://sphinx.silverrainz.me/strike"
repository = "https://github.com/sphinx-notes/strike"
changelog = "https://sphinx.silverrainz.me/strike/changelog.html"
tracker = "https://github.com/sphinx-notes/strike/issues"
[build-system]
requires = ["setuptools>=46.1.0", "setuptools_scm[toml]>=5", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
# For smarter version schemes and other configuration options,
# check out https://github.com/pypa/setuptools_scm
version_scheme = "no-guess-dev"
[tool.setuptools.packages.find]
# Find namespace package,
# check out https://setuptools.pypa.io/en/latest/userguide/package_discovery.html#finding-namespace-packages
where = ["src"]