-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (54 loc) · 1.79 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
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright (c) 2022 Association Prologin <[email protected]>
# Copyright (c) 2022 Marc 'risson' Schmitt <[email protected]>
[tool.poetry]
name = "prologin-django-utils"
version = "0.0.0" # this is overriden in CI at release time
description = "Utils for Prologin's Django applications"
authors = ["Association Prologin <[email protected]>", "Marc 'risson' Schmitt <[email protected]>"]
license = "GPL-3.0-or-later"
repository = "https://gitlab.com/prologin/tech/packages/django-utils.git"
packages = [
{ include = "django_utils" },
]
[[tool.poetry.source]]
name = "gitlab-prologin"
url = "https://gitlab.com/api/v4/groups/prologin/-/packages/pypi/simple"
secondary = true
[tool.poetry.dependencies]
python = "^3.10"
boto3 = "^1.24"
celery = { version = "^5.2" }
collectfast = "*"
django = "^4.0"
django-allow-cidr = "^0.6"
django-celery-beat = { version = "^2.4"}
django-debug-toolbar = "*"
django-mail-panel = "^4.0"
django-post-office = "^3.6"
django-prometheus = "^2.2"
django-pypprof = { version = "1.0.0", optional = true }
django-redis = { version = "^5" }
django-rest-knox = { version = "^4.2" }
django-storages = "^1.12"
django-structlog = { version = "^4.0", extras = [ "celery" ] }
djangorestframework = { version = "^3.13" }
drf-spectacular = { version = "*", extras = [ "offline" ] }
mozilla-django-oidc = { version = "^3.0", optional = true }
[tool.poetry.extras]
auth = ["mozilla-django-oidc"]
pprof = ["django-pypprof"]
[tool.poetry.dev-dependencies]
black = "*"
isort = "*"
pre-commit = "*"
prospector = {extras = ["with_everything"], version = "*"}
renogin = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 79
[tool.isort]
profile = "black"
line_length = 79