-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
52 lines (42 loc) · 1.4 KB
/
pyproject.toml
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
52
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "txt2stix"
version = "0.0.1b5"
authors = [{ name = "DOGESEC", email = "support@dogesec.com" }]
description = "txt2stix is a Python script that is designed to identify and extract IoCs and TTPs from text files, identify the relationships between them, convert them to STIX 2.1 objects, and output as a STIX 2.1 bundle."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"pathvalidate>=3.2.0",
"phonenumbers>=8.13.39",
"requests==2.32.3",
"python-dotenv>=1.0.1",
"schwifty>=2024.6.1",
"stix2extensions @ https://github.com/muchdogesec/stix2extensions/archive/main.zip",
"tld>=0.13",
"tldextract>=5.1.2",
"validators>=0.28.3",
"base58>=2.1.1",
"llama-index-core==0.12.7",
'llama-index-llms-anthropic==0.6.3',
'llama-index-llms-gemini==0.4.2',
'llama-index-llms-openai==0.3.11',
'mistune==3.0.2',
'beautifulsoup4>=4.12.3',
]
[tool.hatch.metadata]
allow-direct-references = true
[project.urls]
Homepage = "https://github.com/muchdogesec/txt2stix"
Issues = "https://github.com/muchdogesec/txt2stix/issues"
[project.scripts]
stix2arango = "txt2stix.txt2stix:main"
[tool.hatch.build.targets.wheel.force-include]
"includes" = "txt2stix/includes"