-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
59 lines (51 loc) · 1.99 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
# This file is generated from sphinx-notes/template. DO NOT EDIT.
#
# 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-mock"
description = "Sphinx extension for hiding unsupported directives and roles without modifying documents"
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]
docs = ["furo"]
test = ["pytest"]
dev = ["build", "twine"]
[project.urls]
homepage = "https://sphinx.silverrainz.me/mock"
documentation = "https://sphinx.silverrainz.me/mock"
repository = "https://github.com/sphinx-notes/mock"
changelog = "https://sphinx.silverrainz.me/mock/changelog.html"
tracker = "https://github.com/sphinx-notes/mock/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"]