-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (42 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
51 lines (42 loc) · 1.17 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
[project]
name = "iocx"
version = "0.7.3"
description = "Static IOC extraction engine for binaries, text, and logs."
authors = [
{ name = "MalX Labs" }
]
readme = { file = "README-pypi.md", content-type = "text/markdown" }
requires-python = ">=3.9"
license = { text = "MPL-2.0" }
keywords = [
"ioc",
"threat-intel",
"malware-analysis",
"forensics",
"security",
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent",
"Topic :: Security",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"pefile>=2024.8.26",
"python-magic>=0.4.27",
"idna>=3.6",
]
[project.scripts]
iocx = "iocx.cli.main:main"
[project.urls]
Homepage = "https://iocx.dev"
Repository = "https://github.com/iocx-dev/iocx"
Issues = "https://github.com/iocx-dev/iocx/issues"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"