-
Notifications
You must be signed in to change notification settings - Fork 51
/
pyproject.toml
85 lines (79 loc) · 1.86 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[tool.isort]
profile = "black"
line_length = 79
multi_line_output = 3
include_trailing_comma = true
combine_as_imports = true
force_grid_wrap = 2
use_parentheses = true
remove_redundant_aliases = true
known_django = "django"
sections = "FUTURE,STDLIB,DJANGO,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
skip_gitignore = true
skip = [".gitignore", ".dockerignore", ".venv"]
skip_glob = "**/migrations/*.py"
[tool.black]
line_length = 79
target-version = ['py311']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| migrations
)/
)
'''
[tool.poetry]
package-mode = false
name = "we-all-code"
description = ""
version = "0.0.1"
license = "MIT"
readme = "README.md"
repository = "https://github.com/weallcode/website"
homepage = "https://github.com/weallcode/website"
authors = ["Ali Karbassi <[email protected]>"]
[tool.poetry.dependencies]
python = "3.11.9"
arrow = "^1.3.0"
boto3 = "^1.35.36"
django = "^5.1"
django-active-link = "^0.2.2"
django-allauth = {extras = ["socialaccount"], version = "^65.0.2"}
django-anymail = "^11.1"
django-appconf = "^1.0.6"
django-bootstrap3 = "^24.3"
django-cleanup = "^9.0.0"
django-common-helpers = "^0.9.2"
django-cron = "^0.6.0"
django-debug-toolbar = "^4.4.6"
django-environ = "^0.11.2"
django-fullurl = "^1.4"
django-heroku = "^0.3.1"
django-html5 = "^1.0.0"
django-import-export = "^4.1.1"
django-loginas = "^0.3.11"
django-meta = "^2.4.2"
django-nose = "^1.4.7"
django-recaptcha = "^4.0.0"
django-stdimage = "^6.0.2"
django-storages = "^1.14"
factory-boy = "^3.3.1"
gunicorn = "^23.0.0"
icalendar = "^6.0.1"
invoke = "^2.2.0"
json-logging-py = "^0.2"
mock = "^5.1.0"
pillow = "^10.4.0"
psycopg = {extras = ["binary"], version = "^3.2.1"}
sentry-sdk = "^2.16.0"