-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
67 lines (59 loc) · 1.25 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
58
59
60
61
62
63
64
65
66
67
[tool.poetry]
name = "bhread"
version = "0.1.0"
description = "Bhread is a blog aggregator"
authors = ["elpachongco <[email protected]>"]
license = "GPLv3"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
Django = "^4.2.4"
Pillow = "^10.0.0"
requests = "^2.31.0"
feedparser = "^6.0.10"
beautifulsoup4 = "^4.12.2"
requests-cache = "^1.1.0"
trafilatura = "^1.6.1"
django-stubs = {extras = ["compatible-mypy"], version = "^4.2.3"}
django-tailwind = {extras = ["reload"], version = "^3.6.0"}
django-q = "^1.3.9"
psycopg2-binary = "^2.9.7"
slippers = "^0.6.2"
django-allauth = "^0.55.2"
django-debug-toolbar = "^4.2.0"
gunicorn = "^21.2.0"
django-service-objects = "^0.7.1"
docutils = "^0.20.1"
[tool.poetry.group.dev.dependencies]
black = "^23.7.0"
pre-commit = "^3.4.0"
isort = "^5.12.0"
djhtml = "^3.0.6"
mypy = "^1.5.1"
[tool.isort]
profile = "black"
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
plugins = ["mypy_django_plugin.main"]
[tool.django-stubs]
django_settings_module = "core.settings"
[tool.djlint]
ignore="H006,H019"