-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (58 loc) · 1.59 KB
/
Copy pathpyproject.toml
File metadata and controls
70 lines (58 loc) · 1.59 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
[project]
name = "landolfio"
version = "0.1.0"
description = ""
authors = [{name = "Job Doesburg", email = "job.doesburg@gmail.com"}]
requires-python = ">=3.12"
dynamic = ["dependencies"]
[tool.poetry]
[tool.poetry.dependencies]
Django = "^6.0"
python = "^3.12"
requests = "^2.33.0"
json2html = "^1.3.0"
django-queryable-properties = "^1.9.2"
bleach = "^6.2.0"
django-autocompletefilter = "^0.0.9"
django-countries = "^8.2.0"
django-localflavor = "^5.0"
django-model-utils = "^5.0.0"
django-storages = {extras = ["s3"], version = "^1.14.4"}
boto3 = "^1.43.24"
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 = "^26.2"
django-scheduled-tasks = "^0.2.16"
django-tasks-db = "^0.12.0"
[tool.poetry.group.dev.dependencies]
black = "^26.5.1"
coverage = {extras = ["toml"], version = "^7.14.2"}
django-debug-toolbar = "^7.0.0"
django-coverage-plugin = "^3.1.1"
pre-commit = "^4.6.0"
pydocstyle = {extras = ["toml"], version = "^6.3.0"}
pylint = "^4.0.6"
toml-sort = "^0.24.2"
pylint-django = "^2.6.1"
dj-inmemorystorage = "^2.1.0"
[tool.poetry.group.prod.dependencies]
uwsgi = "^2.0.28"
psycopg2-binary = "^2.9.10"
sentry-sdk = "^2.63.0"
[tool.black]
target-version = ["py312"]
[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-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"