-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (38 loc) · 1011 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
[tool]
[tool.poetry]
name = "py-activemq-manager"
version = "0.1.0-dev"
description = "gather information about activemq via the jolokia api"
authors = ["Kyle Smith <smithk86@gmail.com>"]
license = "MIT"
repository = "https://github.com/smithk86/py-activemq-manager"
packages = [
{ include = "activemq_manager" }
]
[tool.poetry.dependencies]
python = "^3.8"
httpx = "^0.21.1"
asyncio-pool = { git = "https://github.com/smithk86/asyncio-pool.git", rev = "d8e7fa17eaf72d9b8199858274ab469b514da6fd" }
dateparser = "^1.1.0"
[tool.poetry.dev-dependencies]
mypy = "^0.931"
pytest = "^6.2.5"
pytest-asyncio = "^0.17.2"
pytest-mypy = "^0.9.1"
docker = "^5.0.3"
types-dateparser = "^1.0.8"
"stomp.py" = "^8.0.0"
[tool.poetry.scripts]
pytest = "pytest:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[[tool.mypy.overrides]]
module = [
"docker",
"stomp"
]
ignore_missing_imports = true
[tool.pytest.ini_options]
addopts = "--mypy"
asyncio_mode = "strict"