forked from itlabsio/kubedeployer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (32 loc) · 940 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "kubedeployer"
description = "package to deploy application on kubernetes"
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE"}
keywords = ["deploy", "kubernetes"]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"kubernetes==25.3.0",
"PyYAML==6.0.1",
"hvac==0.8.2",
"ujson==5.4.0",
"pydantic==1.10.2",
"prettytable==2.5.0",
"python-dotenv==1.0.0",
]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/itlabsio/kubedeployer"
"Bug Tracker" = "https://github.com/itlabsio/kubedeployer/issues"
[project.scripts]
kubedeploy = "kubedeployer:run_kubedeployer"
[tool.hatch.version]
source = "vcs"