-
Notifications
You must be signed in to change notification settings - Fork 44
/
pyproject.toml
57 lines (50 loc) · 1.31 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
[tool.poetry]
name = "guarddog"
description = "GuardDog is a CLI tool to Identify malicious PyPI packages"
authors = ["Ellen Wang", "Christophe Tafani-Dereeper"]
license = "Apache-2.0"
readme = "pypi.rst"
repository = "https://github.com/DataDog/guarddog"
version = "0.0.0"
[tool.poetry.scripts]
guarddog = "guarddog.cli:cli"
[tool.poetry.dependencies]
python = ">=3.10,<4"
semgrep = "1.67.0"
requests = "^2.29.0"
python-dateutil = "^2.8.2"
click = "^8.1.3"
click-option-group = "^0.5.5"
colorama = "^0.4.6" # used by click
urllib3 = "2.2.3"
python-whois = ">=0.8,<0.10"
termcolor = "^2.1.0"
tarsafe = "^0.0.5"
semantic-version = "^2.10.0"
pyyaml = "^6.0"
# 1.12+ requires new version of libgit2 which is not avaiable in Alpine
pygit2 = ">=1.11,<1.17"
configparser = ">=5.3,<8.0"
prettytable="^3.6.0"
yara-python = "^4.5.1"
disposable-email-domains = ">=0.0.103,<0.0.109"
setuptools = ">=70.3,<76.0"
[tool.poetry.group.dev.dependencies]
mypy = "^1.4.1"
coverage = "^7.2.7"
flake8 = ">=5.0.4,<8.0.0"
pytest = ">=7.4,<9.0"
setuptools = ">=65.6.3,<76.0.0"
pytest-mock = "^3.11.1"
sarif-tools = ">=2,<4"
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning"
]
testpaths = [
"tests/analyzer/metadata",
"tests/core"
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"