-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (48 loc) · 1.04 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
[tool.black]
line-length = 160
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| migrations
| venv
| .env
)/
'''
[tool.isort]
profile = "black"
skip = ["migrations", ".env", "venv", ".local", ".history", ".vscode"]
[tool.poetry]
name = "stack-scraper"
version = "0.1.0"
description = "Sample repository showcasing how to write impeccably clean code that will save your sanity."
authors = ["Ashutosh <[email protected]>"]
license = "MIT"
readme = "README.md"
package-mode = false
repository = "https://github.com/ashu-tosh-kumar/stack-scraper"
[tool.poetry.dependencies]
python = "3.11.10"
beautifulsoup4 = "^4.12.3"
flask = "^3.0.3"
pydantic = "^2.8.2"
requests = "^2.32.3"
syrupy = "^4.6.1"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.7.1"
pytest = "^8.3.2"
pytest-mock = "^3.14.0"
black = "^24.4.2"
flake8 = "^7.1.0"
isort = "^5.13.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"