-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
48 lines (42 loc) · 1.33 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>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "findssh"
description = "find open servers on IPv4 subnet such as SSH"
keywords = ["port-scan", "ssh"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Security",
"Topic :: System :: Networking",
"Topic :: Utilities"
]
dynamic = ["readme", "version"]
requires-python = ">=3.9"
[project.scripts]
findssh = "findssh.__main__:main"
[project.optional-dependencies]
tests = ["pytest"]
lint = ["flake8", "flake8-bugbear", "flake8-builtins", "flake8-blind-except", "mypy"]
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
version = {attr = "findssh.__version__"}
[tool.black]
line-length = 90
[tool.mypy]
files = ["src"]
strict_optional = false
allow_redefinition = true
show_error_context = false
show_column_numbers = true