-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
91 lines (82 loc) · 2.45 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[tool.poetry]
name = "aiochannel"
version = "1.3.0"
description = "asyncio Channels (closable queues) inspired by golang"
authors = ["Henrik Tudborg <henrik@tudb.org>"]
readme = "README.md"
license = "Apache-2.0"
keywords = ["asyncio", "aio", "chan", "channel", "gochan"]
homepage = "https://github.com/tudborg/aiochannel"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
"Framework :: AsyncIO",
"Typing :: Typed",
]
packages = [{ include = "aiochannel" }]
[tool.poetry.urls]
"Source" = "https://github.com/tudborg/aiochannel"
"Tracker" = "https://github.com/tudborg/aiochannel/issues"
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.group.dev.dependencies]
pylint = "^3.3.2"
coverage = "^7.6.9"
aiounittest = "^1.4.2"
tox = "^4.23.2"
pytest = "^8.3.4"
pytest-cov = "5"
types-setuptools = "^67.3.0.1"
pytest-codeblocks = "^0.17.0"
pylama = "^8.4.1"
setuptools = "^75.6.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
check_untyped_defs = true
disallow_any_generics = false
disallow_incomplete_defs = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_decorators = true
disallow_untyped_defs = true
follow_imports = "silent"
no_implicit_reexport = true
strict_optional = true
warn_redundant_casts = true
warn_unused_configs = true
warn_unused_ignores = true
files = ["aiochannel", "tests"]
[[tool.mypy.overrides]]
module = ["tests.*"]
check_untyped_defs = true
disallow_incomplete_defs = false
disallow_untyped_calls = false
disallow_untyped_decorators = false
disallow_untyped_defs = false
warn_unused_ignores = false
[tool.pytest.ini_options]
log_cli = true
addopts = "--cov=aiochannel --cov-report=term-missing"
[tool.pylama]
linters = "pycodestyle,pyflakes,pylint"
skip = ".tox,dist,doc,.venv*"
ignore = "F403"
max_complexity = 15
[tool.pylama.linter.pycodestyle]
max_line_length = 99
show_pep8 = true
show_source = true