-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
32 lines (30 loc) · 978 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "arango_cti_processor"
version = "0.0.3"
authors = [
{ name="DOGESEC", email="[email protected]" },
]
description = "A package containing the stix definitions for custom objects used at dogesec"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"stix2",
"python-arango>=8.1.3; python_version >= '3.8'",
"tqdm==4.66.4; python_version >= '3.7'",
"jsonschema==4.22.0; python_version >= '3.8'",
"requests==2.32.2; python_version >= '3.7'",
"stix2arango"
]
[project.urls]
Homepage = "https://github.com/muchdogesec/arango_cti_processor"
Issues = "https://github.com/muchdogesec/arango_cti_processor/issues"
[project.scripts]
arango_cti_processor = "arango_cti_processor.__main__:main"