-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (46 loc) · 1.11 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
[tool.poetry]
name = "kubectlgetall"
version = "0.3.0"
description = "Get a list of CRs for cluster CRDs in a namespace"
authors = ["Jim Fitzpatrick <[email protected]>"]
readme="README.md"
homepage = "https://github.com/Boomatang/kubectlgetall"
repository = "https://github.com/Boomatang/kubectlgetall"
documentation = "https://github.com/Boomatang/kubectlgetall"
keywords = ['OpenShift', 'Kubernetes', 'k8s', 'CRD', 'CR']
classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development"
]
[tool.poetry.dependencies]
python = "^3.9"
click = "^8.1.3"
[tool.poetry.dev-dependencies]
[tool.poetry.scripts]
kubectlgetall = 'kubectlgetall.cli:cli'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
py36 = true
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
# The following are specific to Black, you probably don't want those.
| blib2to3
| tests/data
)/
'''
[tool.isort]
profile = "black"
[tool.bandit]
assert_used.skips = ['*_test.py', '*/test_*.py']