forked from griptape-ai/griptape-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
34 lines (28 loc) · 863 Bytes
/
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
[tool.poetry]
name = "griptape-docs"
version = "0.21.0"
description = ""
authors = ["Griptape <[email protected]>"]
license = "Apache 2.0"
readme = "README.md"
repository = "https://github.com/griptape-ai/griptape-docs"
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.5.2"
mkdocs-material = "^9.2.8"
mkdocs-glightbox = "^0.3.4"
mkdocstrings = {extras = ["python"], version = "^0.23.0"}
mkdocs-gen-files = "^0.5.0"
mkdocs-literate-nav = "^0.6.0"
mkdocs-section-index = "^0.3.6"
pymdown-extensions = "^10.3"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
mktestdocs = "^0.2.1"
pytest = "^7.4.1"
griptape = { git = "https://github.com/griptape-ai/griptape", branch = "dev", extras=["all"] }
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"