-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
43 lines (37 loc) · 1.18 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools >= 77.0.3"]
[project]
authors = [{name = "Maor A", email = "m2a2@users.noreply.github.com"}]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Framework :: AsyncIO",
"Topic :: Security",
"Topic :: Internet :: WWW/HTTP",
"Topic :: System :: Networking"
]
dependencies = [
"aioquic",
"wsproto"
]
description = "QuicDraw(H3) Fuzzing and Racing HTTP/3 (over QUIC)"
dynamic = ["version"] # Use dynamic versioning
keywords = ["HTTP/3", "QUIC", "Web", "Security", "Fuzzing", "Fuzz", "Race-Conditions", "Web Security", "Web Application Security", "HTTP3"]
license = "Apache-2.0"
license-files = ["LICENSE"]
name = "quicdraw"
readme = "README.md"
requires-python = ">=3.9"
[project.optional-dependencies]
ui = ["pyside6"]
[project.scripts]
quicdraw = "quicdraw.quicdraw:cli_main"
quicdraw-ui = "quicdraw.ui.ui:ui_main"
[project.urls]
Homepage = "https://github.com/cyberark/QuicDrawh3"
Issues = "https://github.com/cyberark/QuicDrawh3/issues"
[tool.setuptools.dynamic]
version = {attr = "quicdraw.quicdraw.__version__"}
[tool.setuptools.packages.find]
where = ["src"]