-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpyproject.toml
48 lines (43 loc) · 1.65 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "haproxy_log_analysis"
version = "6.0.0a5.dev0"
authors = [
{ name="Gil Forcada Codinachs", email="gil.gnome@gmail.com" },
]
description = "Analayze HAProxy log files"
keywords = ["haproxy", "log", "sysadmin", "devops", "report" ]
license = {file = "LICENSE"}
readme = "README.rst"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"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 :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Internet :: Log Analysis",
]
[project.urls]
"Homepage" = "https://github.com/gforcada/haproxy_log_analysis"
"Bug Tracker" = "https://github.com/gforcada/haproxy_log_analysis/issues"
"Changelog" = "https://github.com/gforcada/haproxy_log_analysis/blob/main/CHANGES.rst"
[project.scripts]
haproxy_log_analysis = "haproxy.main:console_script"
[tool.isort]
profile = "plone"
[tool.black]
target-version = ["py38"]
skip-string-normalization = true