[project]
name = "google-tools-cli"
version = "0.3.0"
description = "CLI tool for Google Workspace - manage Forms, Sheets, and more from the command line"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
keywords = ["google-forms", "google-sheets", "cli", "forms", "survey", "spreadsheet", "automation"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Office/Business",
"Topic :: Utilities",
]
dependencies = [
"typer>=0.9.0",
"rich>=13.0.0",
"google-auth>=2.23.0",
"google-auth-oauthlib>=1.1.0",
"google-api-python-client>=2.108.0",
"python-dotenv>=1.0.0",
"pydantic>=2.0.0",
"pyyaml>=6.0.0",
]
[project.scripts]
gtools = "gtools.cli:run"
gforms = "gtools.cli:run"
[project.urls]
Homepage = "https://github.com/maksdizzy/google-forms-cli"
Documentation = "https://github.com/maksdizzy/google-forms-cli#readme"
Issues = "https://github.com/maksdizzy/google-forms-cli/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/gtools"]
[tool.uv]
dev-dependencies = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
]