-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
66 lines (53 loc) · 1.17 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
# Formatters
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
lines_after_imports = 2
skip_glob = ['venv*']
[tool.black]
line-length = 79
target-version = ['py310']
include = '\.py$'
exclude = '''
/(
\.git
| \.venv.*
| __pycache__
| venv.*
| build
| dist
)/
'''
# Poetry
[tool.poetry]
name = "comlink"
version = "0.3.1"
description = "Send and receive messages by using SQS queues."
authors = ["Artem Fedotov"]
license = "MIT"
readme = "README.md"
packages = [
{ include = "comlink" },
]
homepage = "https://github.com/art1415926535/comlink"
repository = "https://github.com/art1415926535/comlink"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/art1415926535/comlink/issues"
"Change Log" = "https://github.com/art1415926535/comlink/releases"
[tool.poetry.dependencies]
python = "^3.10"
aiobotocore = "^2"
[tool.poetry.group.dev.dependencies]
pytest = "^7.1"
pytest-asyncio = "^0.19.0"
black = "^22.8.0"
isort = "^5.10.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
# Tests
[tool.pytest.ini_options]
asyncio_mode = "auto"