-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
21 lines (20 loc) · 910 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "aks_custom_autoscaler"
version = "0.0.1"
authors = [
{ name="Shwan Ciyako", email="[email protected]" },
]
description = "A small service to scale up/down AKS cluster based on custom metrics, in this case the number of pods in a specfic stage, the service will taint the node to prevent new pods from being scheduled on it, until the node is an a preferred state (not native k8s state), it can also remove nodes when reaching a certain threshold"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/thenewnano/AksCustomAutoscaler"
"Bug Tracker" = "https://github.com/thenewnano/AksCustomAutoscaler/issues"