-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
70 lines (63 loc) · 1.53 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = 'trueseeing'
authors = [
{name='Takahiro Yoshimura', email='alterakey@protonmail.com'}
]
classifiers = [
"Topic :: Security",
"Environment :: Console",
"Operating System :: POSIX :: Linux",
"Operating System :: POSIX :: BSD",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Android",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
]
readme = "README.md"
keywords = ['android', 'security', 'pentest', 'hacking']
dependencies = [
"lxml~=5.0",
"pyyaml~=6.0",
"jinja2~=3.1",
"pypubsub~=4.0",
"termcolor~=2.4",
"progressbar2~=4.3",
"importlib_metadata~=7.0",
"asn1crypto~=1.5",
"zstandard~=0.22",
"aiohttp~=3.9",
"lief~=0.14",
"pyaxmlparser~=0.3",
"prompt-toolkit~=3.0",
]
requires-python = ">=3.9"
dynamic = ['version', 'description']
[project.optional-dependencies]
dev = [
"mypy~=1.13",
"pyproject-flake8~=7.0",
"typing_extensions~=4.12",
]
[project.urls]
Source = "https://github.com/alterakey/trueseeing"
[project.scripts]
trueseeing = "trueseeing.app.shell:entry"
[tool.mypy]
strict = true
show_error_codes = true
enable_error_code = "redundant-expr"
[[tool.mypy.overrides]]
module = [
"lxml.*",
"jinja2",
"pubsub",
"asn1crypto.*",
"pyaxmlparser.*",
]
ignore_missing_imports = true
# pyproject-flake8 (pflake8)
[tool.flake8]
extend-ignore = "E301,E302,E265,E114,E501,E231,E252,E261,E701,E722,E741"
indent-size = 2