-
Notifications
You must be signed in to change notification settings - Fork 104
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (64 loc) · 1.64 KB
/
Copy pathpyproject.toml
File metadata and controls
73 lines (64 loc) · 1.64 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[project]
name = "guarddog"
requires-python = ">=3.10"
dynamic = ["version"]
[project.scripts]
guarddog = "guarddog.cli:cli"
[tool.poetry]
name = "guarddog"
description = "GuardDog is a CLI tool for identifying malicious open source packages"
authors = ["Ellen Wang", "Christophe Tafani-Dereeper"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/DataDog/guarddog"
version = "3.1.0"
[tool.poetry.scripts]
guarddog = "guarddog.cli:cli"
[tool.poetry.dependencies]
click = "^8.4.1"
configparser = ">=5.3,<8.0"
disposable-email-domains = ">=0.0.214,<0.0.215"
prettytable="^3.17.0"
python = ">=3.10,<4"
python-dateutil = "^2.9.0"
python-whois = ">=0.8,<0.10"
# 1.12+ requires new version of libgit2 which is not avaiable in Alpine
pygit2 = ">=1.11,<1.19"
pyyaml = "^6.0"
requests = "^2.34.0"
semantic-version = "^2.10.0"
tarsafe = "^0.0.5"
termcolor = "^3.3.0"
urllib3 = "^2.7.0"
yara-python = "^4.5.4"
nono-py = ">=0.11.0"
packaging = ">=21.0"
boto3 = "^1.43"
typing-extensions = "^4.16.0"
[tool.poetry.group.dev.dependencies]
coverage = "^7.15.0"
# Used by the eval clustering tooling (evals/cluster.py) for fuzzy fingerprint matching
python-tlsh = "^4.5.0"
flake8 = ">=5.0.4,<8.0.0"
mypy = "^2.1.0"
pytest = ">=7.4.4"
pytest-mock = "^3.11.1"
sarif-tools = ">=2,<4"
black = "^26.3.1"
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning"
]
testpaths = [
"tests/analyzer/metadata",
"tests/analyzer/sourcecode",
"tests/core",
"tests/reporters"
]
[tool.black]
target-version = ["py310"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[solver]
min-release-age=7