-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 863 Bytes
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 863 Bytes
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
[project]
name = "django-graylog"
version = "0.8.0"
description = "Graylog middleware for Django."
authors = [
{ name = "Dan Watson", email = "watsond@imsweb.com" }
]
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: System :: Logging",
"Topic :: System :: Monitoring",
]
dependencies = []
[project.urls]
Homepage = "https://github.com/imsweb/django-graylog"
[project.optional-dependencies]
http = ["requests"]
ua = ["ua-parser"]
all = ["requests", "ua-parser"]
[build-system]
requires = ["uv_build>=0.9.2,<0.10.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"django>=5.2.5",
]