-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 774 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (33 loc) · 774 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "CassandraCTI"
version = "2.0.0"
description = "Modular Cyber Threat Intelligence Aggregator"
requires-python = ">=3.10"
dependencies = [
"aiohttp>=3.9",
"feedparser>=6.0",
"PyYAML>=6.0",
"ruamel.yaml>=0.18",
"pydantic>=2.6",
"jinja2>=3.1",
"tenacity>=8.4",
"prometheus-client>=0.20",
"url-normalize>=1.4",
"beautifulsoup4>=4.12",
"lxml>=5.2",
"typer>=0.12",
"colorama>=0.4",
"aiohttp-cors>=0.7.0",
"dnspython>=2.4.0",
"Pillow>=10.0.0",
"psutil>=5.9.0"
]
[project.scripts]
cassandra = "cassandra_cti.cli:app"
[project.optional-dependencies]
test = ["pytest>=8"]
[tool.setuptools.packages.find]
include = ["cassandra_cti*"]