-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (43 loc) · 1.66 KB
/
pyproject.toml
File metadata and controls
47 lines (43 loc) · 1.66 KB
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
[project]
name = "crowdstrike-ioa-sdk"
version = "0.1.0"
description = "Custom IOA functionality from the CrowdStrike app, re-implemented in the SOAR SDK"
license = "Copyright (c) Splunk Inc., 2025"
readme = "README.md"
requires-python = ">=3.9, <3.14"
authors = [
{ name = "Scott Odle", email = "sodle@cisco.com" }
]
dependencies = [
"crowdstrike-falconpy>=1.5.3",
"splunk-soar-sdk",
]
[dependency-groups]
dev = [
"coverage>=7.6.7,<8",
"mypy>=1.2.0,<2",
"pre-commit>=4.2.0,<5",
"pytest>=7.4.2,<8",
"pytest-mock>=3.14.0,<4",
"pytest-watch>=4.2.0,<5",
"ruff>=0.11.6,<1",
]
[tool.soar.app]
main_module = "src.app:app"
[[tool.uv.index]]
url = "https://pypi.python.org/simple"
[tool.uv]
environments = [
"sys_platform == 'linux' and platform_machine == 'x86_64' and python_version == '3.9'",
"sys_platform == 'linux' and platform_machine == 'x86_64' and python_version == '3.13'",
"sys_platform == 'linux' and platform_machine == 'aarch64' and python_version == '3.9'",
"sys_platform == 'linux' and platform_machine == 'aarch64' and python_version == '3.13'",
"sys_platform == 'darwin' and platform_machine == 'x86_64' and python_version == '3.9'",
"sys_platform == 'darwin' and platform_machine == 'x86_64' and python_version == '3.13'",
"sys_platform == 'darwin' and platform_machine == 'arm64' and python_version == '3.9'",
"sys_platform == 'darwin' and platform_machine == 'arm64' and python_version == '3.13'",
]
required-environments = [
"sys_platform == 'linux' and platform_machine == 'x86_64' and python_version == '3.9'",
"sys_platform == 'linux' and platform_machine == 'x86_64' and python_version == '3.13'",
]