forked from mozilla/treeherder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (31 loc) · 869 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
35
[project]
name = "treeherder"
version = "1.0.0"
description = "Defaut package, used for development or readthedocs"
[project.optional-dependencies]
docs = [
"mkdocs==1.5.3",
"mkdocs-material==9.1.21",
"mdx_truly_sane_lists==1.3",
]
[tool.setuptools]
packages = ["treeherder"]
[build-system]
requires = ["setuptools", "wheel"]
# 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.4.2", optional = true }
mkdocs-material = { version = "==8.5.11", optional = true }
mdx_truly_sane_lists = { version = "1.3", optional = true }
[tool.black]
line-length = 100
target-version = ['py39']
skip-string-normalization = true
include = '\.pyi?$'
exclude = '''
/(
treeherder/model/migrations
| treeherder/perf/migrations
| treeherder/changelog/migrations
)/
'''