Files
api-snapshot-cli/pyproject.toml
7000pctAUTO 2125715259
Some checks failed
CI / test (push) Has been cancelled
fix: clean up test fixtures formatting for CI
2026-02-04 14:21:50 +00:00

23 lines
514 B
TOML

[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "api-snapshot-cli"
version = "0.1.0"
description = "A CLI tool that records HTTP API traffic and generates local mock servers from recorded responses"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"click>=8.0",
"httpx>=0.24",
"pyyaml>=6.0",
]
[project.scripts]
api-snapshot = "api_snapshot.cli:main"
[tool.setuptools.packages.find]
where = ["."]
exclude = ["tests*"]