-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 1.02 KB
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "adrg"
version = "1.1.2"
authors = [
{ name="Aldertech", email="hello@aldertech.uk" },
]
description = "Aldertech Dynamic Resource Governor. Monitors host pressure and enforces cgroups v2 limits to Docker containers."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Environment :: Console",
"Intended Audience :: System Administrators",
"Topic :: System :: Systems Administration",
]
dependencies = [
"docker>=7.0.0",
"requests>=2.31.0",
"PyYAML>=6.0.1"
]
[project.scripts]
adrg = "adrg:main"
[project.urls]
"Homepage" = "https://github.com/jaldertech/adrg"
"Bug Tracker" = "https://github.com/jaldertech/adrg/issues"
"Logo" = "https://raw.githubusercontent.com/jaldertech/adrg/main/assets/logo.png"
[tool.setuptools]
py-modules = ["adrg"]
packages = ["modules"]