-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
50 lines (41 loc) · 1.17 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
[tool.poetry]
name = "bitwarden_event_logs"
version = "1.2.2"
description = "A Splunk app for reporting Bitwarden event logs."
authors = [
"Bitwarden <hello@bitwarden.com>"
]
maintainers = [
"Maciej Zieniuk <zieniuk.maciej@gmail.com>"
]
readme = "README.md"
keywords = ["splunk", "bitwarden"]
[tool.poetry.dependencies]
python = ">=3.7.17, <=3.10"
requests = "2.31.0"
splunk-sdk = "2.0.2"
splunktaucclib = { version = "6.3.0", python = "^3.7" }
python-dateutil = "2.9.0.post0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
python = ">=3.7, <=3.10"
python-dotenv = "0.21.1"
types-requests = "2.31.0.6"
splunk-add-on-ucc-framework = { version = "5.49.0", python = "^3.7" }
splunk-appinspect = { version = "3.8.0", python = "^3.7" }
[tool.poetry.group.splunkslim]
optional = true
[tool.poetry.group.splunkslim.dependencies]
python = ">=3.7"
splunk-packaging-toolkit = { version = "1.0.1", python = "^3.7" }
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
python = ">=3.7"
pytest = "7.4.4"
[tool.pytest.ini_options]
pythonpath = "src"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"