-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
33 lines (31 loc) · 1.05 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
[build-system]
requires = [
"flit_core>=3.2",
]
build-backend = "flit_core.buildapi"
[project]
name = "humiologging"
description = "Log utilities for Humio: Handlers, formatters"
license = {file = "LICENSE"}
readme = "README.rst"
authors = [{name = "Uninett Opensource", email = "opensource@uninett.no"}]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: System :: Logging",
"Topic :: System :: Monitoring",
]
dependencies = ["humiolib"]
dynamic = ["version"]
requires-python = ">=3.7"
[project.urls]
Homepage = "https://github.com/Uninett/python-logging-humio"