-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathpyproject.toml
59 lines (55 loc) · 1.49 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
[tool.poetry]
name = "libcloudforensics"
version = "20241207"
description = "libcloudforensics is a set of tools to help acquire forensic evidence from Cloud platforms."
authors = ["cloud-forensics-utils development team <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
[tool.poetry.scripts]
cloudforensics = "tools.cli:Main"
[tool.poetry.dependencies]
python = "^3.8"
google-api-core = "*"
azure-common = "^1.1.28"
azure-core = "^1.29.4"
azure-identity = "^1.13.0"
azure-mgmt-compute = "^30.1.0"
azure-mgmt-monitor = "^6.0.1"
azure-mgmt-network = "^24.0.0"
azure-mgmt-reservations = "^2.3.0"
azure-mgmt-resource = "^23.0.1"
azure-mgmt-storage = "^21.0.0"
azure-storage-blob = "^12.18.1"
boto3 = "^1.28.20"
botocore = ">=1.29.135"
google-api-python-client = "^2.95.0"
httplib2 = "^0.22.0"
msrest = "^0.7.1"
msrestazure = "^0.6.4"
netaddr = "^0.8.0"
pycryptodome = "^3.19.1"
pyjwt = "^2.8.0"
sshpubkeys = "^3.3.1"
requests = "^2.31.0"
kubernetes = "^27.2.0"
pyopenssl = "^23.2.0"
urllib3 = [
{version = ">=1.25.4,<1.27", python = "<3.10"},
{version = ">=1.25.4,<2.1", python = ">=3.10"}
]
google-auth = "^2.22.0"
[tool.poetry.group.dev.dependencies]
coverage = "^7.2.7"
mock = "^5.1.0"
mypy = "^1.4.1"
pylint = "^2.17.5"
sphinx = "^7.1.2"
sphinx-autodoc-typehints = "^1.24.0"
yapf = "^0.40.1"
types-six = "^1.16.21.9"
types-mock = "^5.1.0.1"
sphinx-rtd-theme = "^1.2.2"
wheel = "^0.41.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"