-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1.05 KB
/
Copy pathpyproject.toml
File metadata and controls
43 lines (38 loc) · 1.05 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sentinelioc"
version = "0.2.0"
description = "Defensive IOC scanner for local host artifact correlation"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [
{ name = "Apel Mahmud" }
]
keywords = ["cybersecurity", "ioc", "threat-intelligence", "detection", "blue-team"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Security",
"Environment :: Console"
]
dependencies = [
"typer>=0.12.3",
"rich>=13.7.1",
"psutil>=5.9.8",
"pydantic>=2.7.1"
]
[project.urls]
Homepage = "https://github.com/cseapel/sentinelioc"
Repository = "https://github.com/cseapel/sentinelioc"
Issues = "https://github.com/cseapel/sentinelioc/issues"
[project.scripts]
sentinelioc = "sentinelioc.cli:app"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]