-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpyproject.toml
35 lines (30 loc) · 975 Bytes
/
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
[tool.poetry]
name = "kcare-uchecker"
version = "0.1.2"
description = "A simple tool to detect outdated shared libraries"
authors = ["Rinat Sabitov <rinat.sabitov@gmail.com>"]
license = "GPL-2.0-only"
readme = "README.md"
homepage = "https://kernelcare.com/"
repository = "https://github.com/cloudlinux/kcare-uchecker"
keywords = ["security-audit", "shared-libraries", "security-scanner", "security-tools", "secutiry"]
packages = [
{ include = "uchecker.py" },
]
[tool.poetry.dependencies]
python = "^3.5|^3.6|^3.7|^3.8|^3.9|^2.7|^3.10"
[tool.poetry.scripts]
uchecker = 'uchecker:main'
[tool.poetry.dev-dependencies]
pytest = [
{version = "^4.6", python = "~2.7"},
{version = "^6.0", python = "~3.5"},
{version = "^7.0", python = ">=3.6"}
]
flake8 = "^3.9.2"
pytest-coverage = "*"
mock = { version = "*", markers = "python_version < '3.8'" }
more-itertools = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"