-
Notifications
You must be signed in to change notification settings - Fork 36
/
pyproject.toml
65 lines (58 loc) · 1.51 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
61
62
63
64
65
[tool.poetry]
name = "symphony_bdk_python"
version = "2.7.dev0"
license = "Apache-2.0"
description = "Symphony Bot Development Kit for Python"
readme = "README.md"
authors = ["Symphony Platform Solutions <symphony@finos.org>"]
repository = "https://github.com/finos/symphony-bdk-python"
documentation = "https://symphony-bdk-python.finos.org/"
packages = [
{ include = "symphony" }
]
[tool.poetry.dependencies]
python = "^3.8"
nulltype = "^2.3.1"
python-dateutil = "^2.8.2"
urllib3 = "^1.26.19"
aiohttp = "^3.10.2"
pyyaml = "^6.0"
PyJWT = "^2.3.0"
cryptography = "^43.0.1"
tenacity = "^8.0.1"
defusedxml = "^0.7.1"
docutils = "0.16"
[tool.poetry.dev-dependencies]
pytest = "^8.3.3"
pylint = "^2.6.0"
pytest-cov = "^5.0.0"
pytest-asyncio = "^0.24.0"
Sphinx = "^4.4.0"
recommonmark = "^0.7.1"
furo = "^2022.3.4"
hazelcast-python-client = "^5.0.1"
safety = "^2.2.0"
liccheck = "^0.6.2"
coverage = {version = "^6.0b1", extras = ["toml"]}
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "--junitxml=test-results/junit.xml --cov --cov-report=html"
testpaths = ["tests"]
norecursedirs = ["*.egg", ".*", "build", "dist", "venv", "legacy"]
junit_logging = "all"
[tool.coverage.run]
branch = true
source = ["symphony"]
omit = ["symphony/bdk/gen/*"]
[tool.coverage.report]
fail_under = 90.0
[tool.liccheck]
authorized_licenses = [
"BSD",
"GNU Library or Lesser General Public License (LGPL)",
"MIT",
"Apache Software",
"Python Software Foundation"
]