-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
17 lines (15 loc) · 1.01 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "tc_prometheus"
version = "3.0.0"
license = {text = "MIT"}
authors = [{name = "Simon Effenberg", email = "[email protected]"}]
classifiers = ["Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Natural Language :: English", "Operating System :: MacOS", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License"]
description = "Thumbor Prometheus metrics extension"
readme = {text = "\nPrometheus metrics extension enables thumbor to expose a scrape endpoint prometheus can scrape from.\n", content-type = "text/plain"}
dependencies = ["prometheus_client==0.*,>=0.14.1", "thumbor==7.*,>=7.0.6"]
[project.optional-dependencies]
all = ["prometheus_client==0.*,>=0.14.1", "thumbor==7.*,>=7.0.6"]
tests = ["preggy==1.*,>=1.4.4", "prometheus_client==0.*,>=0.14.1", "pytest-cov==5.*,>=5.0.0", "pytest==8.*,>=8.0.0", "thumbor==7.*,>=7.0.6"]