-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
57 lines (49 loc) · 1.02 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[tool.poetry]
name = "immoweb-scraper"
version = "0.1.0"
description = "A scraper of immoweb url links"
authors = ["Rohail Taimour <rohail.taimour@gmail.com>"]
readme = "README.md"
packages = [{include = "immoweb_scraper"}]
[tool.poetry.scripts]
scrape-immoweb = 'immoweb_scraper.main:app'
[tool.poetry.dependencies]
python = "^3.10"
pandas = "^2.1.0"
typer = "^0.9.0"
requests = "^2.31.0"
loguru = "^0.7.2"
pydantic = ">=1.10.0,<2.0.0"
prefect = "^2.13.2"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
isort = "^5.12.0"
pre-commit = "^3.4.0"
flake8 = "^6.1.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.4.2"
pytest-mock = "^3.11.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ['py310']
include = '\.pyi?$'
exclude = '''
/(
\.toml
|\.sh
|\.git
|\.ini
|Dockerfile
|Jenkinfile
)/
'''
[tool.isort]
profile = "black"
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88