forked from hatching/sflock
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
38 lines (36 loc) · 955 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
29
30
31
32
33
34
35
36
37
38
# Copyright (C) 2015-2018 Jurriaan Bremer.
# Copyright (C) 2018-2019 Hatching B.V.
# This file is part of SFlock - http://www.sflock.org/.
# See the file 'docs/LICENSE.txt' for copying permission.
from setuptools import setup
setup(
name="SFlock",
version="1.0.4",
author="Hatching B.V.",
author_email="jbr@hatching.io",
packages=[
"sflock",
"sflock.unpack",
"sflock.data",
],
entry_points={
"console_scripts": [
"sflock = sflock.main:main",
],
},
url="http://sflock.org/",
license="GPLv3",
description="Sample staging and detonation utility",
include_package_data=True,
python_requires='>3.6',
install_requires=[
"click>=8.1.2",
"cryptography>=41.0.4, <42.0.0",
"olefile>=0.46,<0.50",
"peepdf>=0.4.2,<0.5",
"python-magic>=0.4,<0.5",
],
extras_require={
'test': ['pytest', 'mock']
}
)