-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
41 lines (35 loc) · 1.1 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
[tool.poetry]
name = "malwarebazaar"
version = "0.2.7"
description = "CLI wrapper for malware bazaar API (bazaar.abuse.ch) and YARAify API (yaraify.abuse.ch)"
authors = ["3c7 <3c7@posteo.de>"]
license = "MIT"
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Security",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
]
homepage = "https://github.com/3c7/bazaar"
repository = "https://github.com/3c7/bazaar"
[tool.poetry.dependencies]
python = "^3.9,<3.14"
requests = "^2.31.0"
PyYAML = "^6.0.1"
pyzipper = "^0.3.6"
rich = { version = "^13.6.0", optional = true }
typer = { version = "^0.9.0", optional = true }
pydantic = "^2.4.2"
[tool.poetry.extras]
cli = ["rich", "click", "typer"]
[tool.poetry.group.dev.dependencies]
types-PyYAML = "^6.0.12.12"
types-requests = "^2.31.0.8"
[build-system]
requires = ["poetry-core>=1.1.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
bazaar = "malwarebazaar.bazaar:bazaar_app"
yaraify = "malwarebazaar.yaraify:yaraify_app"