forked from google/turbinia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
71 lines (64 loc) · 1.95 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
66
67
68
69
70
71
[tool.poetry]
name = "turbinia"
version = "20240614.2"
description = "Automation and Scaling of Digital Forensics Tools"
authors = ["Turbinia Developers <[email protected]>"]
maintainers = ["Turbinia Developers <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/google/turbinia"
documentation = "https://turbinia.readthedocs.io/en/latest/"
[tool.poetry.scripts]
turbiniactl = "turbinia.turbiniactl:main"
[tool.poetry.dependencies]
python = "^3.10"
acstore = { version = "20240128" }
backoff = { version = ">=2.2.1" }
celery = { version = "^5.2.2" }
dfDewey = { version = "^20231016", optional = true }
dfimagetools = { version = "^20240301", optional = true }
docker = { version = "^6.1.3" }
fastapi = {extras = ["all"], version = ">=0.75.0,<0.99.0"}
filelock = { version = "*" }
google-api-core = { version = "<3.0.0", optional = true }
google-generativeai = { version = ">=0.3.2" }
libcloudforensics = "^20240325"
opensearch-py = {version = "2.4.2"}
pandas = { version = "^2.1.0" }
plaso = { version = "20240308", optional = true }
prometheus_client = { version = "^0.17.1" }
protobuf = { version = ">=3.19.0", optional = true }
pydantic = { version = "^1.10.5,<2"}
pyglove = { version = ">=0.4.4" }
pyhindsight = { version = "^20230327.0", optional = true }
ratelimit = { version = ">=2.2.1" }
redis = { version = "^4.4.4" }
urllib3 = [
{version = ">=1.25.4,<1.27", python = "<3.10"},
{version = ">=1.25.4,<2.1", python = ">=3.10"}
]
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
coverage = "*"
fakeredis = "^1.8.1"
google-auth-oauthlib = "^1.1.0"
mock = "*"
pytest = "*"
tabulate = "*"
turbinia-api-lib = "^1.0.3"
yapf = "*"
[tool.poetry.extras]
worker = [
"dfimagetools",
"dfDewey",
"plaso",
"pyhindsight",
]
[tool.yapfignore]
ignore_patterns = [
"turbinia/api/client/**/*.py",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"