forked from hatching/sflock
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpyproject.toml
61 lines (47 loc) · 1.34 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
50
51
52
53
54
55
56
57
58
59
60
61
[project]
name = "SFlock2"
version = "0.3.70"
description = "Sample staging and detonation utility"
readme = "README.md"
license = "GPLv3"
include = ["sflock/**"]
keywords = [ "sflock", "unarchive"]
authors = [{name="Hatching B.V.", email="[email protected]"}]
[tool.poetry]
packages = [{ include = "sflock" }]
[tool.dependencies]
python = ">=3.10,<4.0"
click = "*"
cryptography = ">=44.0.0"
olefile = ">=0.43"
pefile = "*"
[tool.poetry.group.windows]
optional = true
[tool.poetry.group.windows.dependencies]
python = ">=3.10,<4.0"
python-magic-bin = {version = ">=0.4.14", markers = "sys_platform == 'win32'" }
[tool.poetry.group.linux]
optional = true
[tool.poetry.group.linux.dependencies]
python-magic = {version = ">=0.4.13", markers = "sys_platform == 'linux'" }
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pytest = {version=">=8.3.4", python = ">=3.8"}
mock = {version=">=5.1.0", python = ">=3.8"}
[tool.poetry.group.shellcode]
optional = true
[tool.poetry.group.shellcode.dependencies]
unicorn = ">=2.0.0"
yara-python = ">=4.1.0"
[tool.distutils.bdist_wheel]
universal = true
[tool.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*"]