forked from hjacobs/kube-web-view
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (37 loc) · 1.08 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
[tool.poetry]
name = "kube-web-view"
version = "20.6.0"
description = "Kubernetes Web View allows to list and view all Kubernetes resources (incl. CRDs) with permalink-friendly URLs in a plain-HTML frontend"
authors = ["Henning Jacobs <[email protected]>"]
license = "GPL-3.0+"
readme = "README.md"
homepage = "https://kube-web-view.readthedocs.io/"
documentation = "https://kube-web-view.readthedocs.io/"
repository = "https://codeberg.org/hjacobs/kube-web-view"
packages = [
{ include = "kube_web" }
]
[tool.poetry.scripts]
kube-web-view = 'kube_web:main.main'
[tool.poetry.dependencies]
python = "^3.7"
pykube-ng = ">=19.9.2"
Jinja2 = "^2.10"
aiohttp-jinja2 = "^1.1"
Pygments = "^2.4"
aiohttp_session = {version = "^2.7", extras = ["secure"]}
aioauth-client = "^0.17.3"
aiohttp_remotes = "^0.1.2"
jmespath = "^0.9.4"
[tool.poetry.dev-dependencies]
pytest = "^5.0"
pytest-cov = "^2.7"
Sphinx = "^2.1"
sphinx-rtd-theme = "^0.4.3"
requests-html = "^0.10.0"
pytest-kind = ">=19.9.1"
mypy = "^0.760"
pre-commit = "^1.21.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"