-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (29 loc) · 986 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (29 loc) · 986 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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "ioc-agent"
version = "1.0.0"
description = "AI-powered IOC (Indicator of Compromise) enrichment agent for SOC and threat-intel workflows."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
keywords = ["security", "threat-intelligence", "ioc", "soc", "dfir", "enrichment", "blue-team"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Security",
]
dependencies = ["requests>=2.28"]
[project.optional-dependencies]
dev = ["pytest>=7.0"]
[project.scripts]
# Lets you run `ioc-agent 8.8.8.8` from anywhere after `pip install -e .`
ioc-agent = "ioc_agent.cli:main"
[tool.setuptools.packages.find]
include = ["ioc_agent*"]
[tool.pytest.ini_options]
testpaths = ["tests"]