forked from mozilla/treeherder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
34 lines (29 loc) · 862 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
[build-system]
requires = ["poetry>=1.0.5"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "docs"
version = "1.0.0"
description = "This is the package installer for docs"
authors = ["Mozilla"]
[tool.poetry.dependencies]
python = "^3.8"
# A list of all of the optional dependencies, some of which are included in the
# below `extras`. They can be opted into by apps.
mkdocs = { version = "1.3.0", optional = true }
mkdocs-material = { version = "4.6.3", optional = true }
mdx_truly_sane_lists = { version = "1.2", optional = true }
[tool.poetry.extras]
docs = ["mkdocs", "mkdocs-material", "mdx_truly_sane_lists"]
[tool.black]
line-length = 100
target-version = ['py38']
skip-string-normalization = true
include = '\.pyi?$'
exclude = '''
/(
treeherder/model/migrations
| treeherder/perf/migrations
| treeherder/changelog/migrations
)/
'''