-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (39 loc) · 928 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
41
42
43
44
45
[tool.poetry]
name = "product-crawler"
version = "0.2.2"
description = ""
authors = ["Terje Lafton <[email protected]>"]
readme = "README.md"
[tool.poetry.scripts]
product-crawler = "product_crawler.main:app"
[tool.poetry.dependencies]
python = "^3.9"
typer = {extras = ["all"], version = "^0.4.0"}
httpx = "^0.19.0"
beautifulsoup4 = "^4.10.0"
dominate = "^2.6.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
black = "^21.9b0"
pre-commit = "^2.15.0"
isort = "^5.9.3"
mypy = "^0.910"
flake8 = "^3.9.2"
[tool.black]
line-length = 120
skip-string-normalization = true
target-version = ['py37']
include = '\.pyi?$'
exclude = '''
(
(\.eggs|\.git|\.hg|\.mypy_cache|\.tox|\.venv|\venv|\.github|\docs|\tests|\__pycache__)
)
'''
[tool.isort]
profile = 'black'
src_paths = ['product_crawler']
combine_as_imports = true
line_length = 120
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"