This repository has been archived by the owner on Sep 19, 2023. It is now read-only.
forked from mansenfranzen/autodoc_pydantic
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
60 lines (52 loc) · 1.79 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
[tool.poetry]
name = "autodoc_pydantic"
version = "1.9.0"
description = "Seamlessly integrate pydantic models in your Sphinx documentation."
authors = ["mansenfranzen <[email protected]>"]
packages = [{ include = "sphinxcontrib" }]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/mansenfranzen/autodoc_pydantic"
repository = "https://github.com/mansenfranzen/autodoc_pydantic"
documentation = "https://github.com/mansenfranzen/autodoc_pydantic"
keywords = ["sphinx", "pydantic", "autodoc", "documentation", "extension"]
classifiers = [
"Framework :: Sphinx :: Extension",
"Topic :: Documentation :: Sphinx",
"Topic :: Software Development :: Documentation"
]
include = ["sphinxcontrib/autodoc_pydantic/css/autodoc_pydantic.css"]
[tool.poetry.dependencies]
python = ">=3.7.1,<4.0.0"
Sphinx = ">=3.4"
pydantic = ">=1.5,<2.0.0"
sphinx-rtd-theme = { version = "^1.0", optional = true }
sphinx-tabs = { version = "^3", optional = true }
sphinx-copybutton = { version = "^0.4", optional = true }
sphinxcontrib-mermaid = { version = "^0.7", optional = true }
pytest = {version = "^7", optional = true }
coverage = { version ="^7", optional = true }
flake8 = { version = "^3", optional = true }
tox = { version ="^3", optional = true }
erdantic= { version ="^0.5", optional = true }
[tool.pytest.ini_options]
minversion = "6.0"
[tool.poetry.extras]
docs = ["sphinx-rtd-theme",
"sphinx-tabs",
"sphinx-copybutton",
"sphinxcontrib-mermaid"]
test = ["pytest",
"coverage"]
dev = ["pytest",
"coverage",
"sphinx-rtd-theme",
"sphinx-tabs",
"sphinx-copybutton",
"sphinxcontrib-mermaid",
"flake8",
"tox"]
erdantic = ["erdantic"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"