forked from bcgov/aries-acapy-plugin-redis-events
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (44 loc) · 1.22 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
[tool.poetry]
name = "redis_queue"
version = "0.1.0"
description = "ACA-Py Redis Event and Message Queue"
authors = ["Shaanjot Gill <[email protected]>"]
maintainers = [
"Shaanjot Gill <[email protected]>",
]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/bcgov/aries-acapy-plugin-redis-events"
repository = "https://github.com/bcgov/aries-acapy-plugin-redis-events"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent"
]
[tool.poetry.dependencies]
python = "^3.6.9"
aries-cloudagent = "^0.8.1"
ecdsa = "^0.16.1"
redis = "^4.1.4"
pydantic = "^1.8.2"
fastapi = "^0.68.0"
uvicorn = "0.16.0"
[tool.poetry.dev-dependencies]
black = "^21.4b2"
flake8 = "^3.9.1"
pre-commit = "^2.12.1"
pytest = "^6.2.3"
pytest-cov = "^2.12.1"
pytest-asyncio = "^0.15.1"
pytest-mock = "^3.6.1"
asynctest = "0.13.0"
rope = "^0.19.0"
[build-system]
requires = ["setuptools", "poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = [
"redis_queue/v1_0/tests",
"redis_deliverer/deliver/tests",
"redis_relay/relay/tests",
]