-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (63 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
71 lines (63 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
71
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "rtosploit"
dynamic = ["version"]
description = "RTOS Exploitation & Bare-Metal Fuzzing Framework"
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.10"
authors = [
{name = "Santhosh Ballikonda"},
]
keywords = ["security", "fuzzing", "embedded", "rtos"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Security",
"Topic :: System :: Hardware",
]
dependencies = [
"click>=8.1",
"rich>=13.0",
"pyyaml>=6.0",
"pyelftools>=0.30",
"capstone>=5.0",
"jinja2>=3.1",
"prompt_toolkit>=3.0",
"questionary>=2.1",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov",
"pytest-timeout",
"mypy",
"ruff",
]
[project.scripts]
rtosploit = "rtosploit.cli.main:main"
[project.urls]
Homepage = "https://github.com/Indspl0it/RTOSploit"
Repository = "https://github.com/Indspl0it/RTOSploit"
[tool.hatch.version]
path = "VERSION"
pattern = "(?P<version>.+)"
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.mypy]
python_version = "3.10"
strict = false
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]