-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 820 Bytes
/
Copy pathpyproject.toml
File metadata and controls
44 lines (38 loc) · 820 Bytes
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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "malforge"
dynamic = ["version"]
description = "Local sandbox JSON to detection artifact pipeline."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"PyYAML>=6.0,<7.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0,<10.0",
]
[project.scripts]
malforge = "main:main"
[tool.setuptools]
py-modules = ["main"]
# core/constants.py is the single source of truth for the tool version.
[tool.setuptools.dynamic]
version = { attr = "core.constants.TOOL_VERSION" }
[tool.setuptools.packages.find]
where = ["."]
include = [
"attck*",
"converters*",
"core*",
"enrichment*",
"extractor*",
"generators*",
"ingestion*",
"ioc*",
"quality*",
"reporting*",
"review*",
]