-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
64 lines (57 loc) · 1.29 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
dependencies = ["django"]
[project.optional-dependencies]
dev = ["pytest", "black", "flake8"]
[tool.black]
line-length = 88
preview=true
py36 = true
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
# The following are specific to Black, you probably don't want those.
| blib2to3
| tests/data
)/
'''
[tool.poetry]
name = "dienst2"
version = "0.1.0"
description = ""
authors = ["Joep de Jong"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
django = ">=4.2,<5.0"
django-environ = "^0.10.0"
whitenoise = "^6.5.0"
django-reversion = "^5.0.4"
django-reversion-compare = "^0.16.2"
django-import-export = "^3.2.0"
djangorestframework = "^3.15.2"
django-filter = "^23.2"
django-health-check = "^3.17.0"
django-bootstrap3 = "^23.4"
google-api-python-client = "^2.94.0"
google-auth-oauthlib = "^1.0.0"
drf-writable-nested = "^0.7.0"
django-debug-toolbar = "^4.1.0"
psycopg = {extras = ["binary"], version = "^3.1.9"}
pyupgrade = "^3.9.0"
django-upgrade = "^1.14.0"
google-auth = "^2.22.0"
python-jose = {extras = ["cryptography"], version = "^3.3.0"}
gunicorn = "^22.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[virtualenvs]
create = false