pyproject.toml (view raw)
1[tool.poetry]
2name = "janny"
3version = "0.1.0"
4description = "Delete Kubernetes resources after a set time"
5authors = ["Anirudh Oppiliappan <x@icyphox.sh>"]
6license = "MIT"
7
8[tool.poetry.dependencies]
9python = "^3.8"
10requests = "^2.25.1"
11
12[tool.poetry.dev-dependencies]
13
14[build-system]
15requires = ["poetry-core>=1.0.0"]
16build-backend = "poetry.core.masonry.api"