forked from StormWorld0/storm-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (42 loc) · 841 Bytes
/
Copy pathpyproject.toml
File metadata and controls
46 lines (42 loc) · 841 Bytes
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
[project]
name = "Storm-Framework"
version = "3.10"
authors = [
{name = "エルジー", 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",
]
keywords=["storm", "pentest", "cybersecurity", "security-research", "pentesting-tools"]
[tool.black]
line-length = 88
target-version = ['py312']
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| .*/vendor/.*
| example/
)/
'''
[tool.pyrefly]
search_path = ["."]
[tool.pyright]
executionEnvironments = [
{ root = "." }
]
[tool.mypy]
mypy_path = "."