-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
41 lines (36 loc) · 983 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
36
37
38
39
40
41
[tool.poetry]
name = "policykit"
version = "0.4.0"
license = "Apache-2.0"
description = "A set of utilities and classes for working with Open Policy Agent based tools, including Gatekeeper and Conftest"
authors = ["Gareth Rushgrove <gareth@morethanseven.net>"]
readme = "README.md"
repository = "https://github.com/garethr/policykit"
[tool.poetry.dependencies]
python = "^3.7"
PyYAML = "^5.1"
click = "^7.0"
colorama = "^0.4.1"
attrs = "^19.3"
"delegator.py" = "^0.1.1"
dataclasses-json = "^0.3.5"
[tool.poetry.scripts]
policykit = "policykit.cli:cli"
pk = "policykit.cli:cli"
kubectl-pk = "policykit.cli:cli"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
pytest-black = "^0.3.7"
pytest-isort = "^0.3.1"
pytest-mypy = "^0.4.1"
pytest-cov = "^2.8"
pytest-mock = "^1.11"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
combine_as_imports = true
line_length = 88
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"