-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
59 lines (52 loc) · 1.82 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
[tool.poetry]
name = "poetry-audit-plugin"
version = "0.4.0"
description = "Poetry plugin for checking security vulnerabilities in dependencies"
authors = ["opeco17 <[email protected]>"]
readme = "README.md"
repository = "https://github.com/opeco17/poetry-audit-plugin"
packages = [{include = "poetry_audit_plugin"}]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Topic :: System :: Archiving :: Packaging",
"Topic :: System :: Installation/Setup",
"Topic :: System :: Software Distribution",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License"
]
keywords = ["poetry", "vulnerabilities", "security", "audit"]
[tool.poetry.dependencies]
python = "^3.8"
poetry = "^1.6.1"
safety = "^3.0.0"
[tool.poetry.group.dev.dependencies]
pytest = "^6.2.5"
mypy = "^0.942"
black = "^22.12.0"
isort = "^5.12.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
[tool.mypy]
ignore_missing_imports = true
check_untyped_defs = true
[tool.poetry.plugins."poetry.application.plugin"]
poetry-audit-plugin = "poetry_audit_plugin.plugin:AuditApplicationPlugin"