-
Notifications
You must be signed in to change notification settings - Fork 149
/
Copy pathsetup.py
28 lines (28 loc) · 838 Bytes
/
setup.py
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
from setuptools import setup, find_packages
setup(
name='pyhindsight',
python_requires='>=3.9',
packages=find_packages(),
include_package_data=True,
scripts=['hindsight.py', 'hindsight_gui.py'],
version='20241027',
description='Browser forensics for Google Chrome/Chromium',
url='https://github.com/obsidianforensics/hindsight',
author='Ryan Benson',
author_email='[email protected]',
license='Apache',
keywords=['chrome', 'forensics', 'dfir', 'google-chrome', 'chromium'],
classifiers=[],
install_requires=[
'bottle>=0.12.18',
'keyring>=21.2.1',
'pycryptodomex>=3.9.7',
# 'pypiwin32>=219',
'pytz>=2021.3',
'xlsxwriter>=3.1',
'puremagic>=1.11',
'protobuf>=4.23',
'argparse>=1.4.0',
# 'ccl_chromium_reader @ git+https://github.com/cclgroupltd/ccl_chromium_reader.git'
]
)