-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
92 lines (78 loc) · 2.29 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[tool.poetry]
name = "simplesecurity"
version = "2023.0.2"
license = "mit"
description = "Combine multiple popular python security tools and generate reports or output into different formats"
authors = ["FredHappyface"]
classifiers = [
"Environment :: Console",
"Environment :: MacOS X",
"Environment :: Win32 (MS Windows)",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Security",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
homepage = "https://github.com/FHPythonUtils/SimpleSecurity"
repository = "https://github.com/FHPythonUtils/SimpleSecurity"
documentation = "https://github.com/FHPythonUtils/SimpleSecurity/blob/master/README.md"
readme = "README.md"
[tool.poetry.scripts]
simplesecurity = 'simplesecurity:cli'
[tool.poetry.dependencies]
python = "^3.7"
poetry = {version = "<2,>=1.5.1", optional = true}
bandit = {version = "<2,>=1.7.5", optional = true}
safety = {version = "<3,>=2.3.5", optional = true}
dodgy = {version = "<2,>=0.2.1", optional = true}
dlint = {version = "<2,>=0.14.1", optional = true}
semgrep = {version = "<2,>=1.29.0", optional = true}
[tool.poetry.extras]
full = ["poetry", "bandit", "safety", "dodgy", "dlint", "semgrep"]
[tool.poetry.group.dev.dependencies]
jsonschema = "^4.17.3"
[tool.black]
line-length = 100
target-version = ["py38"]
[tool.isort]
profile = "black"
indent = "Tab"
[tool.pydocstyle]
convention = "google"
ignore = "D205,D415"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pylint.basic]
argument-naming-style = "camelCase"
attr-naming-style = "camelCase"
function-naming-style = "camelCase"
method-naming-style = "camelCase"
variable-naming-style = "camelCase"
[tool.pylint.format]
indent-string = "\t"
[tool.pylint.master]
ignore-paths = ["tests"]
[tool.pylint.messages_control]
enable = ["F", "E", "W", "R", "C"]
disable = ["pointless-string-statement", "superfluous-parens"]
[tool.tox]
legacy_tox_ini = """
[tox]
isolated_build = True
env_list =
py311
py310
py39
py38
[testenv]
allowlist_externals = poetry
commands =
poetry install -v
poetry run pytest
"""