-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
73 lines (64 loc) · 2.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
65
66
67
68
69
70
71
72
73
[tool.poetry]
name = "thrunting-tools"
version = "8.5.2"
description = "A collection of utilities to help with threat hunting on the command line."
authors = ["Derek Ditch <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
packages = [{ include = "elastic" }]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Information Technology",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Security",
"Typing :: Typed",
]
keywords = ["elasticsearch", "eql", "lucene", "command line"]
repository = "https://github.com/elastic/securitylabs-thrunting-tools"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/elastic/securitylabs-thrunting-tools/issues"
[tool.poetry.scripts]
eql-query = 'elastic.thrunting_tools.eql_query:app'
lucene-query = 'elastic.thrunting_tools.lucene_query:app'
unmap-pe = 'elastic.thrunting_tools.binaries.unmap_pe:app'
from-charcode = 'elastic.thrunting_tools.format.from_charcode:app'
to-charcode = 'elastic.thrunting_tools.format.to_charcode:app'
url-decode = 'elastic.thrunting_tools.format.url_decode:app'
url-encode = 'elastic.thrunting_tools.format.url_encode:app'
zlib-inflate = 'elastic.thrunting_tools.compression.zlib_inflate:app'
zlib-deflate = 'elastic.thrunting_tools.compression.zlib_deflate:app'
zlib-compress = 'elastic.thrunting_tools.compression.zlib_deflate:app'
zlib-decompress = 'elastic.thrunting_tools.compression.zlib_inflate:app'
[tool.poetry.dependencies]
python = "^3.10"
typer = { extras = ["all"], version = "^0.7.0" }
scalpl = "^0.4.2"
pygments = "^2.13.0"
prompt-toolkit = "^3.0.32"
elasticsearch = "^8.5.0"
appdirs = "^1.4.4"
ruamel-yaml = "^0.17.21"
pydantic = { version = "^1.10.2" }
pefile = "^2022.5.30"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
pre-commit = "^2.20.0"
black = "^22.10.0"
flake8 = "^5.0.4"
isort = "^5.10.1"
pylint = "^2.15.5"
devtools = { extras = ["pygments"], version = "^0.9.0" }
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = ["."]
[tool.isort]
profile = "black"
[tool.pyright]
include = ["elastic", "tests"]
exclude = ["**/__pycache__"]