Files
lr-1/pyproject.toml
2026-09-07 21:57:12 +03:00

23 lines
400 B
TOML

[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "text_analyzer"
version = "0.1.0"
description = "CLI tool for analyzing text files"
requires-python = ">=3.12"
dependencies = []
[project.scripts]
text-analyzer = "text_analyzer.cli:main"
[tool.ruff]
line-length = 88
[tool.mypy]
strict = true
[tool.pytest.ini_options]
testpaths = ["tests"]