Files
api-testgen-cli/pyproject.toml
CI Bot 52e792305b feat: initial commit for regex-humanizer-cli
- Add regex parser, translator, and test generator
- Add CLI with explain, test, interactive commands
- Add multi-flavor support (PCRE, JavaScript, Python)
- Add Gitea Actions CI workflow
- Add comprehensive README documentation
2026-02-06 03:02:57 +00:00

61 lines
1.5 KiB
TOML

[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "regex-humanizer-cli"
version = "1.0.0"
description = "A CLI tool that converts complex regex patterns to human-readable English descriptions and generates comprehensive test cases"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.9"
authors = [
{name = "Regex Humanizer Contributors"}
]
keywords = ["regex", "regular-expression", "cli", "humanizer", "testing"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"click>=8.0",
"regex>=2023.0",
"parsimonious>=0.10.0",
"pygments>=2.15",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"black>=23.0",
"ruff>=0.1.0",
]
[project.scripts]
regex-humanizer = "regex_humanizer.cli:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_functions = ["test_*"]
addopts = "-v --tb=short"
[tool.black]
line-length = 100
target-version = ['py39']
[tool.ruff]
line-length = 100
target-version = "py39"
[tool.setuptools.packages.find]
where = ["."]
include = ["regex_humanizer*"]