forked from alphaonelabs/website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (60 loc) · 1.37 KB
/
pyproject.toml
File metadata and controls
66 lines (60 loc) · 1.37 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
[tool.poetry]
name = "education-website"
version = "0.1.0"
description = "Alpha One Labs Educational Platform"
authors = ["Alpha One Labs <info@alphaonelabs.com>"]
packages = [
{ include = "web" }
]
[tool.poetry.dependencies]
python = "^3.10"
django = "^5.1"
django-environ = "^0.11.2"
django-simple-captcha = "^0.5.20"
requests = "^2.32.4"
djlint = "^1.36.4"
stripe = "^11.4.1"
google-auth-oauthlib = "^1.2.0"
google-auth-httplib2 = "^0.2.0"
google-api-python-client = "^2.118.0"
icalendar = "^5.0.11"
whitenoise = "^6.8.2"
django-allauth = "^65.3.1"
django-storages = "^1.14.4"
django-markdownx = "^4.0.7"
django-browser-reload = "^1.18.0"
python-avatars = "^1.4.1"
cryptography = "^44.0.2"
tweepy = "^4.15.0"
pillow = "^11.1.0"
uvicorn = "^0.34.0"
sentry-sdk = "^2.25.1"
pyopenssl = "^25.0.0"
oauth2client = "4.1.3"
bleach = "^6.2.0"
channels = "^4.3.1"
channels-redis = "^4.3.0"
redis = "^6.4.0"
mysqlclient = "^2.2.4"
psutil = "^7.1.3"
[tool.poetry.group.dev.dependencies]
djlint = "^1.34.1"
pre-commit = "^3.6.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.djlint]
profile = "django"
indent = 2
blank_line_after_tag = "load,extends"
close_void_tags = true
format_css = true
format_js = true
[tool.black]
line-length = 120
target-version = ['py312']
include = '\.pyi?$'
[tool.isort]
profile = "ruff"
multi_line_output = 3
line_length = 120