-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 916 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (30 loc) · 916 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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "iris_timelineexport_module"
version = "1.2.0"
description = "IRIS Module – DFIR-Report-style timeline diagram export"
readme = "README.md"
license = { file = "LICENSE" }
authors = [{ name = "baseVISION AG" }]
requires-python = ">=3.9"
# Pillow and pytz are required at runtime; both are present in IRIS containers
# but declared here so the package is installable in other environments too.
dependencies = [
"Pillow>=9.0",
"pytz",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Information Technology",
"Programming Language :: Python :: 3",
"Topic :: Security",
]
[project.optional-dependencies]
test = [
"pytest>=8.0.0",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["iris_timelineexport_module*"]