-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (51 loc) · 1.23 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (51 loc) · 1.23 KB
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
[tool.poetry]
name = "asyncio_task_helpers"
version = "0.0.2"
description = "A small package with useful helpers for asyncio"
license = "MIT"
readme = "README.md"
homepage = "https://github.com/WindowGenerator/asyncio_task_helpers"
repository = "https://github.com/WindowGenerator/asyncio_task_helpers"
documentation = "https://github.com/WindowGenerator/asyncio_task_helpers"
keywords = [
"asyncio",
"python37",
"python38",
"python39",
"python310",
"python-3"
]
authors = ["WindowGenerator <chudov42@gmail.com>"]
packages = [
{include = "asyncio_task_helpers"},
{include = "tests", format = "sdist"},
]
[tool.poetry.dependencies]
python = "^3.7"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
pytest-asyncio = "^0.18.3"
tox = "^3.25.0"
pre-commit = "^2.19.0"
[tool.isort]
line_length = 88
atomic = true
include_trailing_comma = true
lines_after_imports = 2
lines_between_types = 1
multi_line_output = 3
use_parentheses = true
not_skip = "__init__.py"
filter_files = true
known_first_party = "asyncio_task_helpers"
known_third_party = [
"pytest",
]
[tool.pytest.ini_options]
testpaths = [
"tests"
]
asyncio_mode="auto"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"