-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
pyproject.toml
62 lines (55 loc) · 1.61 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
[project]
name = "sphinx-intl"
dynamic = ['version']
authors = [
{ name = "Takayuki SHIMIZUKAWA", email = "shimizukawa@gmail.com" }
]
description = "Sphinx utility that make it easy to translate and to apply translation."
readme = "README.rst"
requires-python = ">=3.9"
license = {file = "LICENSE"}
dependencies = [
"setuptools",
"click",
"babel",
"sphinx",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: BSD License",
"Topic :: Documentation",
"Topic :: Documentation :: Sphinx",
"Topic :: Software Development",
"Topic :: Software Development :: Documentation",
"Topic :: Text Processing",
"Topic :: Text Processing :: General",
"Topic :: Utilities",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Framework :: Sphinx",
]
[project.optional-dependencies]
test = [
"pytest",
]
[project.urls]
Homepage = "https://github.com/sphinx-doc/sphinx-intl"
Documentation = "https://sphinx-intl.readthedocs.io"
[project.scripts]
sphinx-intl = "sphinx_intl.commands:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "sphinx_intl.__version__"}
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.mypy]
ignore_missing_imports = true
strict_optional = false