-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 672 Bytes
/
pyproject.toml
File metadata and controls
44 lines (39 loc) · 672 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
35
36
37
38
39
40
41
42
43
44
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 88
target_version = ['py311']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| venv
| _build
| buck-out
| build
| dist
)/
)
'''
[tool.isort]
profile = "black"
combine_as_imports = true
combine_star = true
line_length = 88
[tool.pyright]
include = [
"pgcbots"
]
exclude = [
"**/__pycache__"
]
pythonVersion = "3.11"
[tool.pytest.ini_options]
asyncio_mode = "strict"