-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (34 loc) · 936 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
33
34
35
36
37
38
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "dogesec_commons"
version = "0.0.3"
authors = [
{ name="DOGESEC", email="[email protected]" },
]
description = "A package containing views we reuse between various DOGESEC products"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"djangorestframework>=3.15.2",
"drf-spectacular>=0.27.2",
"python-arango>=8.1.3; python_version >= '3.8'",
"stix2",
]
[tool.hatch.metadata]
allow-direct-references = true
[project.urls]
Homepage = "https://github.com/muchdogesec/stixifier_commons"
Issues = "https://github.com/muchdogesec/stixifier_commons/issues"
[project.optional-dependencies]
stixifier = [
"txt2stix",
"file2txt",
"stix2arango",
]