-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (35 loc) · 1.13 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
# SPDX-FileCopyrightText: none
# SPDX-License-Identifier: CC0-1.0
[build-system]
requires = ["setuptools>=61.0.0", "wheel", "setuptools_scm[toml]>=7.1"]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["version"]
name = "routeros-log-exporter"
description = ""
readme = "README.md"
authors = [{ name = "DinoTools"}]
license = { file = "LICENSE.md" }
classifiers = [
"Development Status :: 3 - Alpha",
#"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["RouterOS", "MikroTik", "logging", "exporter"]
dependencies = [
"Click >= 8.0.0",
"librouteros >= 3.0.0",
"pyyaml >= 6.0"
]
requires-python = ">=3.8"
[project.urls]
Homepage = "https://github.com/DinoTools/routeros-log-exporter"
[project.scripts]
routeros_log_exporter = "routeros_log_exporter.__main__:cli"
[tool.setuptools.packages.find]
include = ["routeros_log_exporter*"]
[tool.setuptools_scm]
write_to = "routeros_log_exporter/_scm_version.py"
local_scheme = "no-local-version"