-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (42 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
55 lines (42 loc) · 1.1 KB
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
[tool.poetry]
name = "snake"
version = "1.1.0"
description = "The binary store!"
authors = ["Alex Kornitzer <alex.kornitzer@withsecure.com>"]
license = "https://github.com/WithSecureLabs/snake-core/blob/master/LICENSE"
keywords=["snake", "binary", "malware"]
repository="https://github.com/WithSecureLabs/snake-core"
include = [
"snake/data/**"
]
[tool.poetry.scripts]
snaked = 'snake.snaked:__main__'
snake = 'snake.snake_utility:main'
[tool.poetry.dependencies]
python = "^3.11"
PyJWT = "^2.7.0"
boto3 = "^1.26.160"
celery = { version = "^5.3.0", extras = ["redis"] }
cryptography = "^41.0.1"
marshmallow="^3.19.0"
motor="^3.1.2"
python-magic="^0.4.27"
pyyaml="^6.0"
redis="^4.5.5"
requests="^2.31.0"
tornado="^6.3.2"
vine="^5.0.0"
webargs="^8.2.0"
pydeep = { git="https://github.com/kbandla/pydeep#egg=pydeep", optional=true }
[tool.poetry.extras]
ssdeep = ["pydeep"]
[tool.poetry.dev-dependencies]
black = "^23.3.0"
mypy = "^1.4.1"
ruff = "^0.0.275"
types-requests = "^2.31.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.0.0"
pytest-asyncio = "^0.21.0"
pytest-cov = "^4.1.0"
pytest-mock = "^3.11.1"