[project] name = "netdata-zulip-bot" version = "0.1.0" description = "Zulip bot for receiving Netdata Cloud webhook notifications" authors = [ {name = "Anil Madhavapeddy", email = "anil@recoil.org"} ] readme = "README.md" requires-python = ">=3.11" dependencies = [ "fastapi>=0.104.0", "uvicorn[standard]>=0.24.0", "zulip>=0.9.0", "pydantic>=2.5.0", "python-multipart>=0.0.6", "python-dotenv>=1.0.0", "structlog>=23.2.0", ] [project.optional-dependencies] dev = [ "pytest>=7.4.0", "pytest-asyncio>=0.21.0", "httpx>=0.25.0", "black>=23.0.0", "ruff>=0.1.0", ] [build-system] requires = ["hatchling"] build-backend = "hatchling.build" [project.scripts] netdata-zulip-bot = "netdata_zulip_bot.main:main" [tool.ruff] line-length = 88 target-version = "py311" [tool.ruff.lint] select = ["E", "F", "I", "N", "W", "UP"] [tool.black] line-length = 88 target-version = ['py311'] [dependency-groups] dev = [ "httpx>=0.28.1", "pytest>=8.4.1", "pytest-asyncio>=1.1.0", ]