forked from hatching/sflock
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpyproject.toml
49 lines (38 loc) · 1.17 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
[tool.poetry]
name = "SFlock2"
version = "0.3.69"
description = "Sample staging and detonation utility"
readme = "README.md"
license = "GPLv3"
include = ["sflock/**"]
keywords = [ "sflock", "unarchive"]
authors = ["Hatching B.V. <[email protected]>"]
packages = [{ include = "sflock" }]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
click = "*"
cryptography = ">=2.1"
olefile = ">=0.43"
pefile = "*"
python-magic-bin = {version = ">=0.4.14", markers = "sys_platform == 'win32'" }
python-magic = {version = ">=0.4.13", markers = "sys_platform == 'linux'" }
unicorn = {version = ">=2.0.0", optional = true }
yara-python = {version = ">=4.1.0", optional = true }
mock = {version = ">=5.1.0", optional = true }
pytest = {version = ">=8.2.2", optional = true }
[tool.distutils.bdist_wheel]
universal = true
[tool.poetry.extras]
shellcode = ["unicorn", "yara-python"]
dev = ["mock", "pytest"]
win32 = ["python-magic-bin"]
linux = ["python-magic"]
[tool.poetry.scripts]
sflock = "sflock.main:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
exclude = ["docs*", "tests*"]