-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (41 loc) · 950 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
exclude = [
"/venv",
]
[project]
name = "django_aetos"
version = "0.3.0"
dependencies = [
]
requires-python = ">=3.9"
authors = [
{name = "uberspace.de", email = "hallo@uberspace.de"},
]
maintainers = [
{name = "uberspace.de", email = "hallo@uberspace.de"},
]
description = "Export Django monitoring metrics for prometheus.io"
readme = "README.rst"
license = {file = "LICENSE.txt"}
keywords = [
"metrics",
"prometheus",
"exporter",
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
]
[project.urls]
Homepage = "https://github.com/uberspace/django-aetos"
Issues = "https://github.com/uberspace/django-aetos/issues"
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "example_project.settings"
pythonpath = "example_project"
python_files = [
"test_*.py", "tests.py",]
[tool.black]
line-length = 100