[project] name = "webber-cli" version = "0.1.0" description = "Webber CLI - Command-line client for Webber API" authors = [ {name = "jpmschweitzer"} ] readme = "README.md" requires-python = ">=3.12" license = {text = "MIT"} classifiers = [ "Development Status :: 3 - Alpha", "Environment :: Console", "Programming Language :: Python :: 3.12", "Topic :: Software Development :: Code Generators", ] [project.scripts] webber-cli = "webber_cli.main:app" [build-system] requires = ["setuptools>=75.0", "wheel"] build-backend = "setuptools.build_meta" [tool.setuptools.packages.find] where = ["."] include = ["webber_cli*"] [tool.ruff] target-version = "py312" line-length = 100 src = ["webber_cli"] [tool.ruff.lint] select = ["E", "W", "F", "I", "B", "C4", "UP", "SIM"] ignore = ["E501"] [tool.ruff.format] quote-style = "double" indent-style = "space"