File: pyproject.toml

package info (click to toggle)
python-ecs-logging 2.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 344 kB
  • sloc: python: 1,116; sh: 30; makefile: 7
file content (43 lines) | stat: -rw-r--r-- 1,406 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
38
39
40
41
42
43
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"

[tool.flit.metadata]
dist-name = "ecs-logging"
module = "ecs_logging"
description-file = "README.md"
author = "Seth Michael Larson"
author-email = "seth.larson@elastic.co"
home-page = "https://github.com/elastic/ecs-logging-python"
classifiers = [
  "Development Status :: 5 - Production/Stable",
  "Intended Audience :: Developers",
  "Programming Language :: Python :: 3",
  "Programming Language :: Python :: 3.8",
  "Programming Language :: Python :: 3.9",
  "Programming Language :: Python :: 3.10",
  "Programming Language :: Python :: 3.11",
  "Programming Language :: Python :: 3.12",
  "Programming Language :: Python :: 3.13",
  "Programming Language :: Python :: 3.14",
  "Topic :: System :: Logging",
  "License :: OSI Approved :: Apache Software License"
]
requires = []
requires-python = ">=3.8"

[tool.flit.metadata.requires-extra]
develop = [
    "pytest",
    "pytest-cov",
    "mock",
    "structlog",
    "elastic-apm",
]

[tool.flit.metadata.urls]
"Source" = "https://github.com/elastic/ecs-logging-python"
"Download" = "https://github.com/elastic/ecs-logging-python/releases"
"Documentation" = "https://github.com/elastic/ecs-logging-python"
"Issue Tracker" = "https://github.com/elastic/ecs-logging-python/issues"
"Changelog" = "https://github.com/elastic/ecs-logging-python/blob/main/CHANGELOG.md"