23 lines
514 B
TOML
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*"]
|