-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
58 lines (52 loc) · 1.24 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
[tool.poetry]
name = "signalr-async"
version = "3.0.0"
description = "Python SignalR async client"
authors = ["Sam Mosleh <sam.mosleh@ut.ac.ir>"]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/sam-mosleh/signalr-async"
keywords = ["SignalR", "SignalR client", "Real-time messaging"]
[tool.poetry.dependencies]
python = "^3.8"
aiohttp = "^3.6.0"
msgpack = "^1.0.2"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
pytest-cov = "^2.10.1"
pre-commit = "^2.9.3"
black = "^21.6b0"
isort = "^5.9.1"
autoflake = "^1.4"
pytest-asyncio = "^0.16.0"
aioresponses = "^0.7.2"
pytest-mock = "^3.6.1"
msgpack-types = "^0.2.0"
mypy = "^0.910"
[tool.isort]
profile = "black"
[tool.mypy]
# --strict
disallow_any_generics = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_return_any = true
implicit_reexport = false
strict_equality = true
# --strict end
[tool.pytest.ini_options]
addopts = [
"--strict-config",
"--strict-markers",
]
xfail_strict = true
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"