-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (31 loc) · 899 Bytes
/
setup.py
File metadata and controls
32 lines (31 loc) · 899 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
from setuptools import setup, find_packages
setup(
name="forensiq",
version="1.0.0",
description="AI-powered forensic image analyser with BERT classification, SHAP explainability, and DFXML timeline output",
python_requires=">=3.10",
packages=find_packages(),
install_requires=[
"pytsk3>=20230125",
"pyewf>=20230119",
"regipy>=3.1.0",
"scapy>=2.5.0",
"torch>=2.0.0",
"transformers>=4.38.0",
"scikit-learn>=1.4.0",
"numpy>=1.26.0",
"shap>=0.44.0",
],
entry_points={
"console_scripts": [
"forensiq=main:main",
"forensiq-ui=ui.dashboard:main",
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Information Technology",
"Topic :: Security",
"Programming Language :: Python :: 3.10",
],
)