This repository was archived by the owner on Sep 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (74 loc) · 2.24 KB
/
pyproject.toml
File metadata and controls
83 lines (74 loc) · 2.24 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[tool.poetry]
name = "pydantic-sqs"
version = "0.2.0"
description = "Send and receive AWS SQS messages directly to pydantic objects"
authors = ["Andrew Herrington <andrew.the.techie@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/andrewthetechie/pydantic-sqs"
repository = "https://github.com/andrewthetechie/pydantic-sqs"
documentation = "https://pydantic-sqs.readthedocs.io/en/latest/"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Framework :: AsyncIO"
]
[tool.poetry.urls]
Changelog = "https://github.com/andrewthetechie/pydantic-sqs/releases"
[tool.poetry.dependencies]
python = "^3.7"
pydantic = "^1.10.0"
aiobotocore = "^2.4.0"
[tool.poetry.extras]
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
coverage = {extras = ["toml"], version = "^7.1.0"}
safety = "^2.3.0"
xdoctest = {extras = ["colors"], version = "^1.1.0"}
pre-commit = ">=2.12.1"
pep8-naming = "^0.13.2"
reorder-python-imports = "^3.8.2"
mypy = ">=0.982,<1.5"
pre-commit-hooks = "^4.2.0"
Pygments = "^2.13.0"
pyupgrade = ">=2.38,<4.0"
pytest-cov = "^4.0.0"
types-croniter = "^1.3.2"
pytest_async = "^0.1.1"
pytest-asyncio = ">=0.20,<0.22"
pytest-mock = "^3.7.0"
pytest-lazy-fixture = "^0.6.3"
pytest-env = "^0.8.1"
pytest-mockservers = "^0.6.0"
pytest-xdist = "^3.2.0"
bandit = "^1.7.4"
docker = "^6.0.1"
pytest-rerunfailures = "^11.1.1"
ruff = ">=0.0.249,<0.0.286"
[tool.mypy]
strict = true
warn_unreachable = true
pretty = true
show_column_numbers = true
show_error_codes = true
show_error_context = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "-n auto --ignore examples --cov=pydantic_sqs --cov-report xml:.coverage.xml --cov-report=term-missing --cov-fail-under 75 --reruns 3 --rerun-except AssertionError"
env = [
"AWS_ACCESS_KEY_ID=x",
"AWS_SECRET_ACCESS_KEY=x",
"AWS_DEFAULT_REGION=us-east-1"
]
[tool.ruff]
line-length = 120
target-version = "py37"