cloudflare-gateway-adblocking/pyproject.toml

30 lines
766 B
TOML
Raw Normal View History

2023-07-31 19:07:55 +01:00
[tool.poetry]
name = "cloudflare-gateway-adblocking"
2023-08-06 21:50:38 +01:00
version = "0.1.0"
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-07-31 19:07:55 +01:00
[tool.poetry.group.dev.dependencies]
ruff = "^0.0.281"
black = "^23.7.0"
2023-07-31 19:07:55 +01:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"