-
Notifications
You must be signed in to change notification settings - Fork 72
/
pyproject.toml
64 lines (56 loc) · 1.4 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
[tool.poetry]
name = "dftimewolf"
version = "0.1.0"
description = ""
authors = ["Thomas Chopitea <tomchop@gmail.com>"]
license = "Apache"
[tool.poetry.scripts]
dftimewolf = 'dftimewolf.cli.dftimewolf_recipes:Main'
[tool.poetry.dependencies]
python = ">=3.11,<=3.13"
filelock = "*"
google-cloud-storage = "*"
google-cloud-logging = "*"
google-cloud-bigquery = "*"
PyPDF2 = "^2.6.0"
six = "^1.16.0"
timesketch-import-client = "^20210602"
pandas = "*"
google-cloud-error-reporting = "*"
cmd2 = "^2.4.2"
psutil = "^5.9.1"
prettytable = "^3.3.0"
vt-py = "^0.14.0"
boto3 = "^1.24.31"
python-magic = "^0.4.27"
turbinia-api-lib = "^1.0.2"
turbinia-client = "^1.0.7"
grr-api-client = "^3.4.7"
libcloudforensics = {git = "https://github.com/google/cloud-forensics-utils.git"}
docker = "^7.0.0"
setuptools = "^70.0.0" # needed by docker
[tool.poetry.extras]
turbinia_legacy = ["turbinia"]
[tool.poetry.group.dev.dependencies]
mock = "^4.0.3"
pylint = "^3.1.1"
coverage = "^6.4.2"
mypy = "*"
types-protobuf = "^3.19.22"
types-filelock = "^3.2.7"
types-PyYAML = "^6.0.10"
mkdocs = "^1.3.0"
graphviz = "^0.20"
pytype = "^2023.09.19"
ruff = "^0.3.4"
absl-py = "^2.1.0"
[tool.poetry.group.spannertelemetry]
optional = true
[tool.poetry.group.spannertelemetry.dependencies]
google-cloud-spanner = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
indent-width = 2
line-length = 80