[build-system] requires = ["setuptools>=61.0", "wheel"] build-backend = "setuptools.build_meta" [project] name = "config-convert-cli" version = "0.1.0" description = "A CLI tool for bidirectional conversion between JSON, YAML, TOML, and ENV config formats" readme = "README.md" license = {text = "MIT"} requires-python = ">=3.8" authors = [ {name = "Developer", email = "dev@example.com"} ] keywords = ["cli", "config", "conversion", "json", "yaml", "toml", "env"] classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", ] dependencies = [ "typer>=0.12.3", "rich>=13.7.0", "pyyaml>=6.0.1", "tomli>=2.0.1; python_version < '3.11'", ] [project.optional-dependencies] dev = [ "pytest>=7.4.0", "pytest-cov>=4.1.0", "ruff>=0.1.0", "mypy>=1.7.0", ] [project.scripts] config-convert = "config_convert.cli:main" [tool.setuptools.packages.find] include = ["config_convert*"] [tool.pytest.ini_options] testpaths = ["tests"] python_files = ["test_*.py"] python_functions = ["test_*"] [tool.ruff] target-version = "py38" [tool.mypy] python_version = "3.8" warn_return_any = true warn_unused_configs = true disallow_untyped_defs = false