-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·95 lines (87 loc) · 2.13 KB
/
Copy pathpyproject.toml
File metadata and controls
executable file
·95 lines (87 loc) · 2.13 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[tool.poetry]
name = "builtwithdjango"
version = "0.4.1"
description = "Source code for the builtwithdjango.com website."
authors = ["Rasul Kireev <me@rasulkireev.com>"]
[tool.black]
line-length = 120
target-version = ['py37']
include = '\.pyi?$'
[tool.djlint]
profile = "django"
ignore = "H006,H023,H031,H021,H005,H030,H020,H016,D018,H011"
exclude = "support.html"
[tool.coverage.run]
omit = [
"*/migrations/*",
"*/tests.py",
"manage.py",
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"if __name__ == .__main__.:",
]
[tool.isort]
profile = "django"
combine_as_imports = true
include_trailing_comma = true
line_length = 120
multi_line_output = 3
[tool.poetry.dependencies]
python = "^3.11"
django-autoslug = "^1.9.7"
django-environ = "^0.13.0"
djangorestframework = "^3.11.0"
gunicorn = "^26.0.0"
requests = "^2.23.0"
django-component = "^0.1.6"
Markdown = "^3.3.4"
django-model-utils = "^5.0.0"
django-extensions = "^4.1"
django-filter = "^25.2"
django-rest-auth = {extras = ["with_social"], version = "^0.9.5"}
cloudinary = "^1.28.1"
django-widget-tweaks = "^1.4.12"
python-webpack-boilerplate = "^1.0.0"
Pygments = "^2.12.0"
django-robots = "^6.1"
pytz = "^2026.2"
psycopg2 = "^2.9.5"
whitenoise = "^6.4.0"
django-storages = "^1.13.2"
boto3 = "^1.26.154"
posthog = "^7.15.4"
uvicorn = "^0.48.0"
django = "^5.2.14"
redis = "^7.4.0"
django-anymail = {extras = ["mailgun"], version = "^15.0"}
ipython = "^9.13.0"
structlog = "^25.5.0"
django-structlog = "^10.0.0"
pydantic-ai-slim = {extras = ["openrouter"], version = "^1.102.0"}
logfire = "^4.3.4"
plotext = "^5.3.2"
sentry-sdk = "^2.41.0"
structlog-sentry = "^2.2.1"
django-q2 = {extras = ["sentry"], version = "^1.8.0"}
django-allauth = "^65.12.0"
oauthlib = "^3.3.1"
requests-oauthlib = "^2.0.0"
django-oauth-toolkit = "^3.1.0"
pillow = "^12.0.0"
stripe = "^15.1.0"
[tool.poetry.group.dev.dependencies]
black = "^26.5.1"
pylint = "^4.0.5"
pre-commit = "^4.6.0"
pylint-django = "^2.7.0"
kolo = "^3.1.0"
isort = "^8.0.1"
djlint = "^1.36.4"
pytest = "^8.4.2"
pytest-django = "^4.12.0"
pytest-cov = "^7.1.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"