-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
34 lines (28 loc) · 854 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
[tool.poetry]
name = "pam-tester"
version = "0.0.4"
description = "Tool for testing PAM configurations"
readme = "README.md"
authors = ["Martin Schurz <[email protected]>"]
license = "GPL-3.0-only"
homepage = "https://github.com/dev-sec/pam-tester"
repository = "https://github.com/dev-sec/pam-tester"
documentation = "https://github.com/dev-sec/pam-tester"
[tool.poetry.urls]
Changelog = "https://github.com/dev-sec/pam-tester/blob/master/CHANGELOG.md"
[tool.poetry.scripts]
pam-tester = "pam_tester.pam_tester:pam_auth"
[tool.poetry.dependencies]
python = "^3.6"
click = "^8.0.4"
pam = "^0.2.0"
six = "^1.16.0"
[tool.poetry.dev-dependencies]
[tool.poetry.group.dev.dependencies]
tox = "^4.6.4"
ruff = "^0.0.282"
isort = "^5.12.0"
black = "^23.7.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"