forked from k0retux/fuddly
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (69 loc) · 2.01 KB
/
pyproject.toml
File metadata and controls
79 lines (69 loc) · 2.01 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
72
73
74
75
76
77
78
79
[project]
name = "fuddly"
authors = [
{ name="Eric Lacombe", email="eric.lacombe@security-labs.org" },
]
description = "Fuzzing and Data Manipulation Framework (for GNU/Linux)"
readme = "README.rst"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dynamic = ["version"]
dependencies = [
"crcmod>=1.7",
"rpyc<7.0.0,>=6.0.0",
"graphviz",
"matplotlib",
"paramiko<4.0.0,>=3.4.0",
"pyserial",
"z3-solver>=4.8",
"pyxdg",
"xtermcolor",
"sphinx",
"sphinxcontrib-napoleon",
"sphinx-rtd-theme",
"argcomplete",
"pycups",
"python-constraint2"
]
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_file = "src/fuddly/framework/_version.py"
[options]
include_package_data = true
[project.scripts]
fuddly = "fuddly.cli:main"
[project.urls]
"Homepage" = "https://github.com/k0retux/fuddly"
"Bug Tracker" = "https://github.com/k0retux/fuddly/issues"
"Documentation" = "http://fuddly.readthedocs.io"
# Data models and Projects
[project.entry-points."fuddly.data_models"]
jpg = "fuddly.data_models.file_formats.jpg"
json = "fuddly.data_models.file_formats.json"
pdf = "fuddly.data_models.file_formats.pdf"
png = "fuddly.data_models.file_formats.png"
zip = "fuddly.data_models.file_formats.zip"
http = "fuddly.data_models.protocols.http"
pppoe = "fuddly.data_models.protocols.pppoe"
sms = "fuddly.data_models.protocols.sms"
usb = "fuddly.data_models.protocols.usb"
myproto = "fuddly.data_models.tutorial.myproto"
tuto = "fuddly.data_models.tutorial.tuto"
[project.entry-points."fuddly.projects"]
standard = "fuddly.projects.generic.standard"
usb = "fuddly.projects.specific.usb"
tuto = "fuddly.projects.tuto"
[project.entry-points."fuddly.targets"]
debug = "fuddly.targets.debug"
local = "fuddly.targets.local"
network = "fuddly.targets.network"
printer = "fuddly.targets.printer"
sim = "fuddly.targets.sim"
ssh = "fuddly.targets.ssh"
[project.entry-points."fuddly.info"]
generic = "fuddly.info.generic"