[build-system] requires = ["setuptools>=61.0", "wheel"] build-backend = "setuptools.build_meta" [project] name = "loglens-cli" version = "0.1.0" description = "A CLI tool that parses, analyzes, and provides intelligent summaries of log files" readme = "README.md" requires-python = ">=3.9" license = {text = "MIT"} authors = [ {name = "7000pctAUTO", email = "7000pctAUTO@users.noreply.gitea.bloupla.net"} ] keywords = ["cli", "logging", "analysis", "log-parser", "log-analyzer"] classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "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", "colorlog>=6.7", "rich>=13.0", "pyyaml>=6.0", ] [project.scripts] loglens = "loglens.cli.commands:main" [project.optional-dependencies] dev = [ "pytest>=7.0", "pytest-cov>=4.0", "ruff>=0.1.0", "mypy>=1.0", ] [tool.pytest.ini_options] testpaths = ["tests"] python_files = ["test_*.py"] python_functions = ["test_*"] addopts = "-v --tb=short" [tool.ruff] target-version = "py39" [tool.ruff.lint] select = ["E", "F", "W", "I", "N", "UP"] ignore = [] [tool.mypy] python_version = "3.9" warn_return_any = true warn_unused_configs = true disallow_untyped_defs = true