forked from sensynehealth/kombu-batteries-included
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (41 loc) · 1013 Bytes
/
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
[tool.poetry]
name = "kombu-batteries-included"
version = "1.1.4"
description = "Batteries-included library for Polaris services using Kombu"
authors = ["Jon Daly <[email protected]>"]
keywords = ["Polaris", "kombu", "rabbitmq", "amqp"]
repository = "https://github.com/polaris-foundation/kombu-batteries-included"
[tool.poetry.dependencies]
python = "^3.9"
environs = "9.*"
kombu = "5.*"
she-logging = "1.*"
[tool.poetry.dev-dependencies]
bandit = "*"
black = "*"
coloredlogs = "*"
coverage = "*"
isort = "*"
mypy = "*"
pytest = "*"
pytest-freezegun = "*"
pytest-mock = "*"
pytz = "*"
safety = "*"
tox = "*"
types-pytz = "*"
[tool.mypy]
namespace_packages=true
ignore_missing_imports=false
disallow_untyped_defs=true
[[tool.mypy.overrides]]
module = [
"kombu"
]
ignore_missing_imports = true
[tool.isort]
profile = "black"
known_third_party = ["_pytest", "environs", "kombu", "pytest", "pytest_mock", "pytz", "she_logging", "toml"]
[tool.black]
line-length = 88
target-version = ["py39"]