-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
62 lines (51 loc) · 1.25 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
62
[tool.poetry]
authors = ["Bryan Matteson <bryan@matteson.dev>"]
description = ""
name = "cbasyncio"
packages = [{include = "cbasyncio", from = "src"}]
readme = "README.md"
version = "0.0.1"
[tool.poetry.dependencies]
pydantic = {version = "^1.9.1", optional = true}
python = "^3.8"
typing-extensions = "^4.2.0"
uvloop = {version = "^0.16.0", optional = true}
[tool.poetry.extras]
uvloop = ["uvloop"]
[tool.poetry.group.dev.dependencies]
black = "^22.3.0"
hypothesis = "^6.48.2"
pytest = "^7.1.2"
pytest-asyncio = "^0.18.3"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]
[tool.isort]
ensure_newline_before_comments = true
force_grid_wrap = 0
include_trailing_comma = true
line_length = 120
multi_line_output = 3
use_parentheses = true
[tool.pycln]
all = true
[tool.black]
include = "\\.(py)$"
line-length = 120
target-version = ["py38"]
[tool.mypy]
disallow_untyped_defs = true
ignore_missing_imports = true
show_traceback = true
[tool.pyright]
exclude = ["**/__pycache__"]
ignore = []
include = ["src/cbasyncio"]
stubPath = "./typings"
typeCheckingMode = "basic"
useLibraryCodeForTypes = true
reportInvalidTypeVarUse = false
reportMissingImports = true
reportMissingTypeStubs = false
pythonPlatform = "All"
pythonVersion = "3.9"