-
Notifications
You must be signed in to change notification settings - Fork 48
/
pyproject.toml
46 lines (42 loc) · 1.11 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
[tool.poetry]
name = "divideandscan"
version = "1.0.3"
description = "Divide full port scan results and use it for targeted Nmap runs"
authors = ["Sam Freeside <[email protected]>"]
license = "BSD-2-Clause"
readme = "README.md"
homepage = "https://github.com/snovvcrash/DivideAndScan"
repository = "https://github.com/snovvcrash/DivideAndScan"
keywords = ["pentest", "scan", "nmap", "masscan", "rustscan"]
classifiers = [
"Topic :: Security",
"Programming Language :: Python :: 3",
"Environment :: Console",
"License :: OSI Approved :: BSD License"
]
packages = [
{ include = "das" }
]
exclude = [".gitignore"]
[tool.poetry.scripts]
das = 'das.divideandscan:main'
divideandscan = 'das.divideandscan:main'
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
tinydb = "^4.6.1"
netaddr = "^0.8.0"
defusedxml = "^0.7.1"
plotly = "^5.8.2"
dash = "^2.5.1"
networkx = "^2.8.4"
pandas = "^2.0.0"
scipy = "^1.8.1"
dnspython = "^2.3.0"
python-nmap = "^0.7.1"
[tool.poetry.dev-dependencies]
flake8 = "^4.0.1"
pylint = "^2.12.2"
twine = "^3.8.0"
[build-system]
requires = ["poetry-core>=1.0.1"]
build-backend = "poetry.core.masonry.api"