-
Notifications
You must be signed in to change notification settings - Fork 48
/
pyproject.toml
52 lines (43 loc) · 1.67 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
[build-system]
requires = ["setuptools", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "sphinxcontrib-spelling"
readme = "README"
authors = [{ name = "Doug Hellmann", email = "[email protected]" }]
description = "Sphinx spelling extension"
dynamic = ["version"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Web Environment",
"Framework :: Sphinx :: Extension",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Documentation",
"Topic :: Utilities",
]
requires-python = ">=3.10"
dependencies = ["PyEnchant>=3.1.1", "Sphinx>=3.0.0", "requests>=2.32.3"]
[project.optional-dependencies]
test = ["pytest", "pytest-cov", "coverage!=4.4,>=4.0"]
[project.entry-points."sphinx.builders"]
spelling = "sphinxcontrib.spelling"
[project.urls]
homepage = "https://sphinxcontrib-spelling.readthedocs.io/en/latest/"
repository = "https://github.com/sphinx-contrib/spelling"
# https://github.com/pypa/setuptools_scm/
[tool.setuptools_scm]
write_to = "sphinxcontrib/spelling/version.py"
[tool.setuptools]
# Be explicit to avoid an error because build finds cover,
# sphinxcontrib, and integration_tests as potential packages.
packages = ["sphinxcontrib.spelling"]