-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (38 loc) · 1.09 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
[tool.poetry]
name = "skanr"
version = "0.0.2"
description = "Multithreaded IPV4 port scanner written in python"
authors = ["Stephen Eaton <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/madeinoz67/skanr"
keywords = ["portscanner", "security"]
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: System :: Systems Administration",
"Topic :: Security",
"Topic :: Utilities"
]
include=[
"LICENSE",
]
[tool.poetry.dependencies]
python = ">=3.7"
argparse = "^1.4.0"
ipaddress = "^1.0.23"
[tool.poetry.dev-dependencies]
black = "^21.7b0"
bandit = "^1.7.0"
[tool.poetry.scripts]
skanr = "skanr.cli:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"