-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (42 loc) · 934 Bytes
/
pyproject.toml
File metadata and controls
50 lines (42 loc) · 934 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
47
48
49
50
[project]
name = "fuel"
version = "0.1.0"
description = "A fuzzing system for DL frameworks by using LLMs"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"astunparse>=1.6.3",
"click>=8.2.1",
"coverage>=7.8.1",
"httpx[socks]>=0.28.1",
"huggingface-hub>=0.31.4",
"loguru>=0.7.3",
"matplotlib>=3.10.3",
"numpy>=2.2.6",
"openai>=1.81.0",
"pre-commit>=4.2.0",
"pyyaml>=6.0.2",
"requests>=2.32.3",
"tqdm>=4.67.1",
"transformers>=4.52.2",
]
[project.scripts]
fuel = "fuel.fuzz:cli"
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"*" = ["**/*"]
[tool.ruff]
target-version = "py312"
fix = true
exclude = ["baselines/"]
[tool.ruff.lint]
extend-select = ["I"]
select = ["E", "F", "I"]
ignore = ["E501"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
line-ending = "lf"