-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
27 lines (25 loc) · 920 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "sau"
version = "0.1.0"
authors = [{ name = "Emeka Ugwuanyi", email = "ugwuanyiemy@gmail.com" }]
description = "The SAU Exporter is a Python-based application designed to collect and expose AWS EC2 and EBS volume metrics for monitoring and observability. It utilizes the Prometheus client library to provide an HTTP endpoint for scraping metrics."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"boto3>=1.28.80",
"prometheus-client==0.17.1",
"PyYAML>=5.3.1",
"requests",
"multiprocessing-logging==0.3.4",
]
[project.urls]
"Homepage" = "https://github.com/emylincon/sau"
"Bug Tracker" = "https://github.com/emylincon/sau/issues"