Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,4 @@ missing
.venv/
__pycache__/
logs/
*.egg-info/
17 changes: 14 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,20 @@ Check out [REPRODUCING.md](REPRODUCING.md) for more detailed instructions.
```shell
python3 -m venv .venv
```
- Within that virtual environment, from the root directory of this repository, install the tooling with `pip install .`

Alternatively you can use Poetry to run tools directly, using `poetry run <tool>`.
- Within that virtual environment, from the root directory of this repository, install the tooling with
```shell
pip install .
```
- Alternatively you can use `uv`; either
```shell
uv sync
uv pip install -e .
```
to sync your environment, or
```shell
uv run <tool>
```
directly.

## What's in this testcase?

Expand Down
172 changes: 0 additions & 172 deletions poetry.lock

This file was deleted.

28 changes: 13 additions & 15 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,10 @@
name = "curl-fuzzer-tools"
version = "0.1.0"
description = "Tooling for the curl-fuzzer repository"
maintainers = [
{name = "Max Dymond",email = "cmeister2@gmail.com"}
]
readme = "README.md"
requires-python = ">=3.9,<4"
dependencies = [
"scapy (>=2.6.1,<3.0.0)"
]
readme = "README.md"
license = { file = "LICENSE" }
maintainers = [{ name = "Max Dymond", email = "cmeister2@gmail.com" }]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
Expand All @@ -27,20 +22,23 @@ classifiers = [
"Topic :: Software Development :: Testing",
"Typing :: Typed",
]

[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"

[tool.poetry.group.dev.dependencies]
mypy = "1.15.0"
ruff = "0.9.10"
dependencies = ["scapy (>=2.6.1,<3.0.0)"]

[project.scripts]
read_corpus = "curl_fuzzer_tools.read_corpus:run"
generate_corpus = "curl_fuzzer_tools.generate_corpus:run"
corpus_to_pcap = "curl_fuzzer_tools.corpus_to_pcap:run"

[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[dependency-groups]
dev = [
"mypy==1.15.0",
"ruff==0.9.10",
]

[tool.mypy]
warn_unused_configs = true
disallow_untyped_defs = true
Expand Down
Loading