-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
37 lines (34 loc) · 998 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sysdiagnose"
version = "0.1.0"
description = "A tool for sysdiagnose parsing and analysis"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.11"
license = { text = "EUPL-1.2" }
authors = [
{name = "EC-DIGIT-CSIRC"}
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: EUPL 1.2",
"Operating System :: OS Independent",
]
keywords = ["sysdiagnose", "analysis", "parsing", "iOS", "apple", "malware", "forensics"]
urls = { "Homepage" = "https://github.com/EC-DIGIT-CSIRC/sysdiagnose" }
dependencies = [
"docopt==0.6.2",
"graphviz==0.20.3",
"tabulate==0.9.0",
"python-dateutil==2.9.0.post0",
"gpxpy==1.6.2",
"pandas==2.2.3",
"numpy==2.1.3",
"nska-deserialize==1.5.1",
"yara-python==4.5.1",
"python-json-logger==2.0.7"
]
[project.scripts]
sysdiag = "sysdiagnose.main:main"