diff --git a/pyproject.toml b/pyproject.toml index 7bef073..7792b2f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,12 +16,16 @@ include = [ "data/tos.jsonl", ] +[tool.poetry.scripts] +weboptout = "weboptout.__main__:main" + [tool.poetry.dependencies] python = ">=3.9" aiohttp = ">=3.8" langdetect = ">=1.0.9" beautifulsoup4 = ">=4.12" selenium = { version = ">=4.7", optional = true } +click = "^8.1.7" [tool.poetry.extras] webdriver = ["selenium"] @@ -33,4 +37,4 @@ pytest-cov = ">=3.0.0" [build-system] requires = ["poetry>=1.5"] -build-backend = "poetry.masonry.api" \ No newline at end of file +build-backend = "poetry.masonry.api"