[project] name = "ai-app-ops-tools" version = "0.1.0" description = "AI-powered natural language ops terminal for heterogeneous servers" requires-python = ">=3.11" dependencies = [ "fastapi>=0.110", "uvicorn[standard]>=0.27", "pydantic>=2.6", "pydantic-settings>=2.2", "PyYAML>=6.0", "Jinja2>=3.1", "asyncssh>=2.14", "pywinrm>=0.4.3", "sqlalchemy[asyncio]>=2.0", "aiosqlite>=0.19", "anthropic>=0.40", "typer>=0.12", "python-dotenv>=1.0", "rich>=13.7", ] [project.optional-dependencies] dev = [ "pytest>=8.0", "pytest-asyncio>=0.23", "ruff>=0.3", ] [project.scripts] ops = "ops_tools.cli:app" [build-system] requires = ["setuptools>=68", "wheel"] build-backend = "setuptools.build_meta" [tool.setuptools.packages.find] where = ["src"] [tool.ruff] line-length = 100 target-version = "py311" [tool.pytest.ini_options] asyncio_mode = "auto" testpaths = ["tests"]