-
Notifications
You must be signed in to change notification settings - Fork 45
/
pyproject.toml
42 lines (36 loc) · 1.06 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
[tool.poetry]
name = "badsecrets"
version = "0.6.0"
description = "About"
authors = ["A library for detecting known or weak secrets on across many platforms"]
license = "GPL-3.0"
readme = "README.md"
[tool.poetry.dev-dependencies]
requests-mock = "^1.10.0"
pytest = "^8.3.3"
pytest-cov = "^6.0.0"
mock = "^5.1.0"
pytest-mock = "^3.10.0"
poetry-dynamic-versioning = {extras = ["plugin"], version = "^1.4.1"}
[tool.poetry.dependencies]
python = "^3.9"
pycryptodome = "^3.15.0"
viewstate = ">=0.5.3,<0.7.0"
flask-unsign = "^1.2.0"
Django = "^4.1.2"
pyjwt = {extras = ["crypto"], version = "^2.6.0"}
requests = "^2.28.1"
colorama = "^0.4.6"
[tool.poetry.scripts]
badsecrets = 'badsecrets.examples.cli:main'
telerik-knownkey = 'badsecrets.examples.telerik_knownkey:main'
symfony-knownkey = 'badsecrets.examples.symfony_knownkey:main'
[tool.black]
line-length = 119
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry-dynamic-versioning]
enable = true
metadata = true
format = 'v0.6.{distance}'