-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (62 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
70 lines (62 loc) · 1.58 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
[project]
name = "Storm-Framework"
version = "3.5.11"
authors = [
{name = "Elzy", email = "elzyproot@protonmail.com"}
]
description = "Just a Storm Framework"
readme = "README.md"
requires-python = ">=3.12"
license = {text = "GPL-3.0"}
classifiers = [
"License :: OSI Approved :: GPL License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
dependencies = [
"cryptography>=46.0.4",
"requests>=2.32.5",
"urllib3>=2.6.3",
"colorama>=0.4.6",
"python-nmap>=0.7.1",
"python-whois>=0.9.6",
"dnspython>=2.8.0",
"paramiko>=4.0.0",
"scapy>=2.7.0",
"ipwhois>=1.3.0",
"ipaddress>=1.0.23",
"whoisdomain>=1.20260106.1",
"telnetlib3>=4.0.0",
]
keywords=["storm", "pentest", "cybersecurity", "security-research", "pentesting-tools"]
[project.urls]
"Homepage" = "https://github.com/StormWorld0/storm-framework"
"Bug Reports" = "https://github.com/StormWorld0/storm-framework/issues"
"wiki" = "https://github.com/StormWorld0/storm-framework/wiki"
"Source" = "https://github.com/StormWorld0/storm-framework"
[tool.black]
line-length = 88
target-version = ['py312']
# Forcefully override .gitignore rules
include = '(app/|modules/|lib/).*\.py$'
# Keep the metadata folder safe
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| lib/smf/core/db/vendor
| example/exmod.py
)/
'''
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["app", "assets", "lib", "modules", "script"]