-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (29 loc) · 833 Bytes
/
pyproject.toml
File metadata and controls
34 lines (29 loc) · 833 Bytes
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
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]
[tool.isort]
multi_line_output = 3
profile = "black"
[tool.poetry]
authors = ["Peter Pölzl <33464174+ppoelzl@users.noreply.github.com>"]
description = "API for Path Of Building's build sharing format."
license = "MIT"
name = "pobapi"
version = "0.6.0"
[tool.poetry.dependencies]
dataslots = "^1.0.2"
lxml = "^4.6.2"
python = ">=3.7,<4.0"
requests = "^2.25.1"
sphinx = {version = ">=3.4.2,<5.0.0", optional = true}
sphinx-autodoc-typehints = {version = "^1.11.1", optional = true}
unstdlib = "^1.7.2"
[tool.poetry.dev-dependencies]
black = "^22.10"
isort = "^5.11.1"
pytest = "^7.1.3"
sphinx = ">=3.4.2,<5.0.0"
sphinx-autodoc-typehints = "^1.11.1"
toml-sort = "^0.20.1"
[tool.poetry.extras]
docs = ["sphinx", "sphinx-autodoc-typehints"]