-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
111 lines (98 loc) · 2.54 KB
/
Copy pathpyproject.toml
File metadata and controls
111 lines (98 loc) · 2.54 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "wagov-squ"
dynamic = ["version"]
description = "Python SIEM Query Utils with Ibis support"
authors = [{name = "Adon Metcalfe", email = "adonm@fastmail.fm"}]
license = "Apache-2.0"
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
keywords = ["siem", "security", "azure", "sentinel", "query", "automation"]
dependencies = [
"tenacity",
"platformdirs",
"universal-pathlib",
"adlfs",
"azure-monitor-query",
"azure-kusto-data",
"atlassian-python-api",
"abuseipdb-wrapper",
"pandas",
"dbt-duckdb",
"python-benedict",
"markdown",
"pytenable",
"httpx",
"msticpy[azsentinel]",
"ibis-framework[duckdb]",
"duckdb",
"aiohttp>=3.13.4",
"cryptography>=46.0.7",
"deepdiff>=8.6.2",
"idna>=3.15",
"lxml>=6.1.0",
"pillow>=12.2.0",
"pip>=26.1",
"pyopenssl>=26.0.0",
"pygments>=2.20.0",
"python-dotenv>=1.2.2",
"requests>=2.33.0",
"tornado>=6.5.5",
"urllib3>=2.7.0",
"pydantic>=2.0",
"pydantic-settings>=2.0",
"semver>=3.0.4",
"pandas-stubs>=2.3.2.250827",
]
[project.optional-dependencies]
dev = [
"pytest>=9.0.3",
"pytest-cov",
"ruff",
"mypy",
"pre-commit",
]
[project.urls]
Homepage = "https://github.com/wagov/nbdev-squ"
Documentation = "https://wagov.github.io/nbdev-squ"
Repository = "https://github.com/wagov/nbdev-squ"
Issues = "https://github.com/wagov/nbdev-squ/issues"
[tool.setuptools]
packages = ["wagov_squ", "nbdev_squ"]
package-dir = {"" = "src"}
[tool.setuptools.dynamic]
version = {attr = "wagov_squ.__version__"}
[tool.ruff]
line-length = 100
target-version = "py312"
src = ["src"]
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
ignore = ["E501"] # Line too long (handled by formatter)
[tool.mypy]
python_version = "3.12"
packages = ["src.wagov_squ"]
strict = true
warn_return_any = true
warn_unused_configs = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py", "*_test.py"]
addopts = "--cov=src/wagov_squ --cov-report=term-missing"
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"integration: marks tests as integration tests requiring Azure configuration"
]
[dependency-groups]
dev = [
"pdoc>=16.0.0",
]