-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
76 lines (64 loc) · 1.86 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[tool.poetry]
name = "trio-engineio"
version = "0.2.0"
description = "An asynchronous Engine.IO client using the trio framework"
authors = ["Eric Lemoine <erik.lemoine@gmail.com>"]
license = "BSD-3-Clause"
readme = "README.md"
homepage = "https://github.com/Elmeric/trio-engineio"
repository = "https://github.com/Elmeric/trio-engineio"
documentation = "https://elmeric.github.io/trio-engineio"
packages = [{include = "trio_engineio", from = "src"}]
classifiers=[
"Operating System :: OS Independent",
"Framework :: Trio",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Natural Language :: English",
"Topic :: Software Development :: Libraries",
]
[tool.poetry.dependencies]
python = "^3.9.0"
trio = "^0.22.0"
httpcore = "^0.17.1"
trio-websocket = "^0.10.2"
typing-extensions = {version = "^4.4.0", python = "<3.8"}
[tool.poetry.group.test.dependencies]
pytest = "^7.1.3"
pytest-trio = "^0.8.0"
pytest-cov = "^4.0.0"
invoke = "^2.0.0"
[tool.poetry.group.dev.dependencies]
pylint = { version = "^2.15.5" }
mypy = "^1.3"
trio-typing = "^0.8.0"
pre-commit = {version = "^3.0.4"}
invoke = "^2.0.0"
black = {version = "^24.3.0", extras = ["colorama"]}
isort = {version = "^5.12.0", extras = ["colors"]}
[tool.poetry.group.docs.dependencies]
mkdocs = {version = "^1.4.2"}
mkdocstrings = {version = "^0.22.0", extras = ["python"]}
mkdocs-material = {version = "^9.0.11", extras = ["python"]}
pymdown-extensions = "^10.0"
markdown-callouts = "^0.3.0"
invoke = "^2.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
target-version = ["py39", "py310", "py311"]
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = [
"--import-mode=importlib",
"--cov-report=term-missing",
"--cov-branch",
# "--cov=trio_engineio"
]
trio_mode = true
testpaths = [
"tests",
]