-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (52 loc) · 1.7 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
49
50
51
52
53
54
55
56
57
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "fail2bangeolocation"
version = "2.0.9"
authors = [{ name = "Rubén Hortas", email = "rubenhortas@gmail.com" }]
description = "Shows geolocation of the IPs of the failed attempts recorded by fail2ban"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.0"
keywords = ["fail2ban", "geolocation", "network", "networking", "montitoring", "firewall", "security"]
dependencies = [
"colorama",
"requests",
"tqdm",
"urllib3"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: MacOS",
"Operating System :: POSIX",
"Environment :: Console",
"Intended Audience :: System Administrators",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Topic :: Internet",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Security",
"Topic :: System :: Monitoring",
"Topic :: System :: Networking",
"Topic :: System :: Networking :: Firewalls"
]
[project.urls]
"Homepage" = "https://github.com/rubenhortas/fail2bangeolocation"
"Bug Tracker" = "https://github.com/rubenhortas/fail2bangeolocation/issues"
[project.scripts]
fail2bangeolocation = "fail2bangeolocation.cli:main"
[tool.hatch.envs.hatch-test]
default-args = ["tests"]
parallel = true
[tool.hatch.build.targets.sdist]
ignore-vcs = true
exclude = [
"/screenshots",
"pyproject.toml",
"requirements.txt"
]