-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
42 lines (38 loc) · 1.08 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "iocsearcher"
version = "2.4.4"
description = "A library and command line tool for extracting indicators of compromise (IOCs) from security reports in PDF, HTML, or text formats."
readme = "README.md"
authors = [{ name = "MaliciaLab" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Security",
]
keywords = ["ioc", "indicator of compromise", "cyber observable", "security", "threat reports", "pdf", "html"]
dependencies = [
"base58",
"beautifulsoup4",
"bech32",
"cashaddress",
"cbor",
"eth-hash[pycryptodome]",
"intervaltree",
"langdetect",
"lxml",
"pdfminer.six",
"phonenumbers",
"python-magic",
"readabilipy",
"docx2python",
]
[project.optional-dependencies]
[project.urls]
Homepage = "https://github.com/malicialab/iocsearcher"
[project.scripts]
iocsearcher = "iocsearcher.__main__:main"