-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
156 lines (127 loc) · 6.55 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
[tool]
[tool.poetry]
name = "complalim"
version = "0.0.1"
description = ""
authors = []
package-mode = false
[tool.poetry.dependencies]
######################################################################################################################
# Main
######################################################################################################################
python = "<4,>= 3.11.*"
Django = "5.*" # https://github.com/django/django
django-environ = "*" # https://github.com/joke2k/django-environ
######################################################################################################################
# API
######################################################################################################################
djangorestframework = "*" # https://github.com/encode/django-rest-framework
djangorestframework-camel-case = "*" # https://github.com/vbabiy/djangorestframework-camel-case
drf-base64 = "*" # https://bitbucket.org/levit_scs/drf_base64/src/master
######################################################################################################################
# Security & Monitoring
######################################################################################################################
sentry-sdk = "*" # https://github.com/getsentry/sentry-python
######################################################################################################################
# Database & Storage
######################################################################################################################
psycopg2 = "*" # https://github.com/psycopg/psycopg2
boto3 = "*" # https://github.com/boto/boto3
django-storages = "*" # https://github.com/jschneier/django-storages
######################################################################################################################
# Additional fields, tags, or Django features etc.
######################################################################################################################
django-filter = "*" # https://github.com/carltongibson/django-filter
django-simple-history = "*" # https://github.com/jazzband/django-simple-history
django-phonenumber-field = { extras = [
"phonenumbers",
], version = "*" } # https://github.com/stefanfoulis/django-phonenumber-field
######################################################################################################################
# Linting & Formatting
######################################################################################################################
ruff = "*" # https://github.com/charliermarsh/ruff
pre-commit = "*" # https://github.com/pre-commit/pre-commit
######################################################################################################################
# Testing & Debugging
######################################################################################################################
ipdb = "*" # https://github.com/gotcha/ipdb
factory-boy = "*" # https://github.com/FactoryBoy/factory_boy
requests-mock = "*" # https://github.com/jamielennox/requests-mock
django-extensions = "*" # https://github.com/django-extensions/django-extensions
django-silk = "^5.3.2"
######################################################################################################################
# Front-end related
######################################################################################################################
django-webpack-loader = "*" # https://github.com/django-webpack/django-webpack-loader
######################################################################################################################
# Mailing
######################################################################################################################
django-anymail = "*" # https://github.com/anymail/django-anymail
sib-api-v3-sdk = "*" # https://github.com/sendinblue/APIv3-python-library
######################################################################################################################
# Misc
######################################################################################################################
pillow = "*" # https://github.com/python-pillow/Pillow
django-ckeditor = "6.7.2" # https://github.com/django-ckeditor/django-ckeditor # we keep it temporarily for migrations
django-ckeditor-5 = "*" # https://github.com/hvlads/django-ckeditor-5
django-viewflow = "*" # https://github.com/viewflow/viewflow
unidecode = "^1.3.8"
celery = "^5.4.0"
redis = "^5.2.1"
xhtml2pdf = "^0.2.16"
bs4 = "^0.0.2"
######################################################################################################################
# Dépendances en environnement de dev
#########################
django-hijack = "^3.7.1"
pandas = "^2.2.3"
[tool.poetry.group.dev.dependencies]
sqlfluff = "*"
######################################################################################################################
# Data tools
######################################################################################################################
pandas = "*" # https://github.com/pandas-dev/pandas
numpy = "*" # https://github.com/numpy/numpy
seaborn = "*" # https://github.com/mwaskom/seaborn
networkx = "*" # https://github.com/networkx/networkx
ipykernel = "*" # https://github.com/ipython/ipykernel
scikit-learn = "*" # https://github.com/scikit-learn/scikit-learn
matplotlib = "*" # https://github.com/matplotlib/matplotlib
######################################################################################################################
# Config
######################################################################################################################
[tool.ruff]
line-length = 119
target-version = "py311"
extend-include = ["*.ipynb"]
extend-exclude = [
"migrations",
"__pycache__",
"frontend",
"docs",
"fixtures",
"clevercloud",
]
[tool.ruff.lint]
ignore = ["E501"]
[tool.ruff.lint.per-file-ignores]
# pas d'auto sorting sur ces fichiers pour éviter les imports circulaires
"__init__.py" = ["I", "F401"]
[tool.ruff.lint.mccabe]
max-complexity = 10
[tool.ruff.lint.isort]
section-order = [
"future",
"standard-library",
"django",
"third-party",
"first-party",
"local-folder",
]
[tool.ruff.lint.isort.sections]
"django" = ["django"]
[tool.ruff.format]
docstring-code-format = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"