-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
39 lines (33 loc) · 841 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
[tool.poetry]
name = "mpscraper"
version = "0.1.0"
description = "Marktplaats.nl (Dutch Classifieds) Listing Scraper"
authors = ["Ross <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
beautifulsoup4 = "^4.13.3"
selenium = "^4.29.0"
PyVirtualDisplay = "^3.0"
tqdm = "^4.67.1"
pandas = "^2.2.3"
lxml = "^5.3.1"
[tool.poetry.group.dev.dependencies]
ruff = "^0.9.10"
pytest = "^8.3.5"
pytest-cov = "^6.0.0"
bandit = "^1.8.3"
pre-commit = "^4.1.0"
[tool.ruff]
line-length = 100
[tool.bandit]
exclude = ["test_*.py"]
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "INFO"
log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"