cloudflare-gateway-adblocking/pyproject.toml

31 lines
789 B
TOML
Raw Permalink Normal View History

2023-07-31 19:07:55 +01:00
[tool.poetry]
name = "cloudflare-gateway-adblocking"
2024-05-12 22:15:37 +01:00
version = "0.1.4"
2023-07-31 19:07:55 +01:00
description = "Serverless adblocking via Cloudflare Zero Trust Gateway"
2023-08-01 06:06:22 +01:00
authors = ["slastechno <77907286+slashtechno@users.noreply.github.com>"]
2023-07-31 19:07:55 +01:00
license = "MIT"
readme = "README.md"
repository = "https://github.com/slashtechno/cloudflare-gateway-adblocking"
keywords = ["cloudflare", "dns", "adblocking", "serverless"]
2023-08-01 16:43:03 +01:00
packages = [{include = "src"}]
2023-08-01 06:55:57 +01:00
[tool.poetry.scripts]
2023-08-01 16:43:03 +01:00
cloudflare-gateway-adblocking = "src.__main__:main"
2023-07-31 19:07:55 +01:00
[tool.poetry.dependencies]
python = "^3.10"
requests = "^2.31.0"
loguru = "^0.7.0"
2023-08-01 06:06:22 +01:00
python-dotenv = "^1.0.0"
2023-08-08 20:50:02 +01:00
httpx = "^0.24.1"
2023-07-31 19:07:55 +01:00
[tool.poetry.group.dev.dependencies]
ruff = "^0.0.281"
black = ">=23.7,<25.0"
2023-07-31 19:07:55 +01:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"