File: setup.cfg

package info (click to toggle)
python-aiohttp-openmetrics 0.0.11-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 92 kB
  • sloc: python: 119; makefile: 2
file content (37 lines) | stat: -rw-r--r-- 1,043 bytes parent folder | download
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
[metadata]
name = aiohttp-openmetrics
description = OpenMetrics provider for aiohttp
long_description = file:README.rst
version = attr:aiohttp_openmetrics.__version__
author = Jelmer Vernooij
author_email = jelmer@jelmer.uk
license = Apache v2 or later
url = https://github.com/jelmer/aiohttp-openmetrics/
project_urls =
    Repository=https://github.com/jelmer/aiohttp-openmetrics
classifiers =
    Development Status :: 4 - Beta
    Programming Language :: Python :: 3.6
    Programming Language :: Python :: 3.7
    Programming Language :: Python :: 3.8
    Programming Language :: Python :: 3.9
    Programming Language :: Python :: 3.10
    Programming Language :: Python :: Implementation :: CPython
    Programming Language :: Python :: Implementation :: PyPy
    Operating System :: POSIX

[mypy]
# prometheus_client doesn't provide type hints
ignore_missing_imports = True

[options]
install_requires =
    aiohttp
    prometheus_client
packages = aiohttp_openmetrics

[options.package_data]
* = py.typed

[bdist_wheel]
universal = 1