-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
40 lines (35 loc) · 977 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[tool.poetry]
name = "weboptout"
description = "Checks the Copyright information of online works and their conditions of use."
version = "dev"
authors = ["Alex J. Champandard <[email protected]>"]
repository = "https://github.com/alexjc/weboptout"
license = "MIT and UNLICENSED"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
]
packages = [
{ include = "weboptout", from = "src" },
]
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"]
[tool.poetry.dev-dependencies]
pytest = ">=7.0.0"
hypothesis = ">=6.0.0"
pytest-cov = ">=3.0.0"
[build-system]
requires = ["poetry>=1.5"]
build-backend = "poetry.masonry.api"