-
Notifications
You must be signed in to change notification settings - Fork 24
/
pyproject.toml
61 lines (57 loc) · 1.01 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
61
[project]
name="benchpark"
description="An open collaborative repository for cross site benchmarking environments"
readme = "README.rst"
requires-python = ">=3.8"
[tool.black]
line-length = 88
color = true
target-version = ['py38', 'py39', 'py310', 'py311']
include = '\.pyi?$|bin\/benchpark$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| repo
)/
'''
force-exclude = '''
/(
'/lib/benchpark/test_repo/(/.*)?$'
| /lib/benchpark/test_repo(/.*)?$
| lib/benchpark/test_repo
| '/bin/benchpark-python'
| \.github
)/
'''
[tool.isort]
profile = "black"
skip_gitignore = true
color_output = true
skip_glob = [
"lib/benchpark/test_repo/**"
]
[tool.flake8]
exclude = [
"lib/benchpark/test_repo/**"
]
skip_glob = [
"lib/benchpark/test_repo/**"
]
force-exclude = [
"./lib/benchpark/test_repo/**"
]
per-file-ignores = """
./lib/benchpark/test_repo/**
"""
[tool.codespell]
skip = './docs/_build,./docs/_static'
ignore-words-list = 'fom'