forked from scrapfly/scrapfly-scrapers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
33 lines (28 loc) · 806 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
[tool.poetry]
name = "scrapfly-rightmove"
version = "0.1.0"
description = "demo web scraper for rightmove.com using Scrapfly"
authors = ["Bernardas Alisauskas <[email protected]>",
"Mazen Ramadan <[email protected]>"]
license = "NPOS-3.0"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
scrapfly-sdk = {extras = ["all"], version = "^0.8.5"}
nested-lookup = "^0.2.25"
loguru = "^0.7.1"
jmespath = "^1.0.1"
[tool.poetry.group.dev.dependencies]
black = "^23.7.0"
pytest = "^7.3.1"
cerberus = "^1.3.4"
asyncio = "^3.4.3"
pytest-asyncio = "^0.21.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
python_files = "test.py"
[tool.black]
line-length = 120
target-version = ['py37', 'py38', 'py39', 'py310', 'py311']