-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
79 lines (71 loc) · 1.81 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[project]
name = "bda.plone.prometheusexporter"
version = "1.0a2.dev0"
description = "Prometheus Exporter for Plone and Zope"
keywords = ["prometheus", "plone"]
readme = "README.md"
maintainers = [
{name = "Jens Klein", email = "[email protected]"},
]
authors = [
{name = "Jens Klein", email = "[email protected]"},
]
requires-python = ">=3.11"
license = { text = "GPL 2.0" }
classifiers = [
"Environment :: Web Environment",
"Framework :: Plone",
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Development Status :: 5 - Production/Stable",
]
dependencies = [
"Products.CMFPlone",
"prometheus_client",
]
[project.urls]
PyPI = "https://pypi.python.org/pypi/bda.plone.prometheusexporter"
Changelog = "https://github.com/bluedynamics/bda.plone.prometheusexporter/blob/main/CHANGES.md"
Source = "https://github.com/bluedynamics/bda.plone.prometheusexporter"
Issues = "https://github.com/bluedynamics/bda.plone.prometheusexporter/issues"
[project.optional-dependencies]
test = [
"pytest_plone",
"plone.app.testing",
"plone.app.robotframework",
"pdbpp",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/tests"
]
[tool.hatch.build.targets.wheel]
packages = [
"/src/bda",
]
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"tests",
]
[tool.isort]
profile = "plone"
[tool.codespell]
ignore-words-list = "discreet,"
skip = './examples/*,./venv/*'
[tool.check-manifest]
ignore = [
".editorconfig",
".pre-commit-config.yaml",
"tox.ini",
"mypy.ini",
".flake8",
"mx.ini",
]