-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
72 lines (57 loc) · 1.51 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
[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "platonic-sqs"
packages = [
{ include = "platonic" },
]
version = "1.2.8"
description = "Platonic wrapper for Amazon Simple Queue Service"
license = "MIT"
authors = []
readme = "README.md"
repository = "https://github.com/python-platonic/platonic-sqs"
keywords = []
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = ">=3.7,<3.10"
boto3-stubs = {extras = ["sqs"], version = "^1.15.10"}
boltons = ">=20.2.1,<22.0.0"
platonic = "^1.2.1"
attrs = "^20.3.0"
botocore = "^1.20.15"
boto3 = "^1.17.15"
mypy-boto3-sqs = "^1.17.26"
[tool.poetry.dev-dependencies]
flake8-pytest = "^1.3"
flake8-pytest-style = "^0.1.3"
safety = "^1.8"
pytest = "^5.3"
pytest-cov = "^2.7"
pytest-randomly = "^3.1"
m2r = "^0.2"
tomlkit = "^0.5"
boto3 = "^1.12.11"
moto = "^1.3.14"
markupsafe = '^1'
contexttimer = "^0.3.3"
sshpubkeys = "^3.1.0"
ipython = "^7.19.0"
hypothesis = "^6.2.0"
flakehell = "^0.9.0"
mister-jeeves = "^0.0.3"
[tool.flakehell]
base = "https://raw.githubusercontent.com/Recall-Masters/standards/main/pyproject.toml"
# https://github.com/flakehell/flakehell/issues/10
extended_default_ignore=[]
[tool.flakehell.exceptions."platonic/sqs/queue/receiver.py"]
wemake-python-styleguide = [
# Found module with too many imports: 13 > 12
"-WPS201",
]