forked from sensynehealth/polaris-async-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (54 loc) · 1.34 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
[tool.poetry]
name = "dhos-async-adapter"
version = "0.0.1"
description = "Polaris Async Adapter"
authors = ["Jon Daly <[email protected]>"]
keywords = ["Async", "Kombu", "RabbitMQ", "Polaris"]
repository = "https://github.com/polaris-foundation/polaris-async-adapter"
[tool.poetry.dependencies]
python = "^3.9"
draymed = "2.*"
environs = "9.*"
kombu-batteries-included = "1.*"
marshmallow = "3.*"
python-jose = "3.*"
requests = "2.*"
she-logging = "1.*"
[tool.poetry.dev-dependencies]
bandit = "*"
black = "*"
coloredlogs = "*"
coverage = "*"
isort = "*"
mock = "*"
mypy = "*"
pytest = "*"
pytest-dhos = "*"
pytest-freezegun = "*"
pytest-mock = "*"
requests_mock = "1.8.*"
safety = "*"
tox = "*"
types-mock = "*"
types-requests = "*"
[tool.mypy]
namespace_packages=true
ignore_missing_imports=false
disallow_untyped_defs=true
[[tool.mypy.overrides]]
module = [
"environs",
"pytest",
"kombu.*",
"requests_mock",
"pytest_mock",
"jose",
"_pytest.*"
]
ignore_missing_imports = true
[tool.isort]
profile = "black"
known_third_party = ["_pytest", "behave", "clients", "draymed", "environs", "helpers", "jose", "kombu", "kombu_batteries_included", "marshmallow", "mock", "pytest", "pytest_mock", "reporting", "reportportal_behave", "requests", "requests_mock", "she_logging"]
[tool.black]
line-length = 88
target-version = ["py39"]