-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (34 loc) · 1.03 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
[tool.poetry]
name = "sphinx-babel"
version = "0.1.0"
description = "Sphinx extensions to cope with multi-language projects"
license = "Apache-2.0"
authors = [
"Michel Hidalgo <[email protected]>",
]
maintainers = ["Michel Hidalgo <[email protected]>"]
readme = "README.md"
packages = [{ include = "sphinx_babel", from = "src" }]
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: Robot Framework :: Library",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Other",
"Intended Audience :: Developers",
]
[tool.poetry.dependencies]
python = "<3.12,>=3.9"
sphinx = ">=6.2"
# doxysphinx = "^3.3.7"
doxysphinx = { git = "https://github.com/Ekumen-OS/doxysphinx.git", branch = "fix-dark-mode" }
[tool.poetry.group.dev.dependencies]
flake8 = "^6.0.0"
flake8-docstrings = "^1.7.0"
mypy = "^1.8"
types-setuptools = "^69.5"
[tool.mypy]
ignore_missing_imports = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"