-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
62 lines (52 loc) · 1.39 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
[tool.poetry]
authors = ["Job Doesburg <[email protected]>"]
description = ""
name = "landolfio"
version = "0.1.0"
[tool.poetry.dependencies]
Django = "^5.0.7"
python = "^3.10"
requests = "^2.27.1"
json2html = "^1.3.0"
django-queryable-properties = "^1.8.2"
bleach = "^6.1.0"
django-autocompletefilter = "^0.0.8"
django-countries = "^7.3.2"
django-localflavor = "^4.0"
django-model-utils = "^4.2.0"
django-storages = "^1.12.3"
boto3 = "^1.24.40"
django-drf-filepond = "^0.5.0"
django-admin-numeric-filter = "^0.1.9"
django-easy-admin-object-actions = "^1.1.0"
django-admin-multi-select-filter = "^1.4.1"
django-reorder-admin = "^0.3.1"
django-bootstrap5 = "^24.2"
[tool.poetry.group.dev.dependencies]
black = "^22.1.0"
coverage = {extras = ["toml"], version = "^6.3.1"}
django-debug-toolbar = "^3.7.0"
django-coverage-plugin = "^2.0.2"
pre-commit = "^2.19.0"
pydocstyle = {extras = ["toml"], version = "^6.1.1"}
pylint = "^2.12.2"
toml-sort = "^0.19.0"
pylint-django = "^2.5.2"
dj-inmemorystorage = "^2.1.0"
[tool.poetry.group.prod.dependencies]
uwsgi = "^2.0.23"
gunicorn = "^20.1.0"
psycopg2-binary = "^2.9.1"
sentry-sdk = "^1.14.0"
[tool.pydocstyle]
add-ignore = "D200"
[tool.pylint]
[tool.pylint.format]
max-line-length = "88"
[tool.pylint.master]
load-plugins = ["pylint_django"]
[tool.pylint.messages_control]
disable = ""
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"