-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (36 loc) · 844 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (36 loc) · 844 Bytes
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
[project]
name = "cloud-guard-stack"
version = "0.1.0"
description = "Enterprise-grade cloud security baseline for ephemeral environments"
authors = [
{name = "Your Name", email = "your.email@domain.com"},
]
dependencies = [
"boto3>=1.28.0",
"azure-identity>=1.12.0",
"azure-mgmt-monitor>=6.0.0",
"azure-mgmt-storage>=21.0.0",
"google-cloud-storage>=2.10.0",
"google-cloud-logging>=3.5.0",
"pandas>=2.0.0",
"matplotlib>=3.7.0",
"networkx>=3.0",
"jinja2>=3.1.0",
"pyyaml>=6.0",
"requests>=2.31.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"black>=23.0.0",
"flake8>=6.0.0",
"mypy>=1.0.0",
"pre-commit>=3.0.0",
]
[tool.black]
line-length = 100
target-version = ['py39']
[tool.mypy]
python_version = "3.9"
warn_return_any = true
warn_unused_configs = true