-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
57 lines (51 loc) · 1.25 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
[tool.poetry]
name = "makerspaceleiden-crm"
version = "0.1.0"
description = ""
authors = ["Your Name <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
django = "^4.2.15"
pytz = "^2023.3.post1"
wheel = "^0.42.0"
django-import-export = "^3.3.3"
django-simple-history = "^3.4.0"
qrcode = "^7.4.2"
django-settings-export = "^1.2.1"
django-stdimage = "^6.0.2"
django-dynamic-filenames = "^1.3.2"
django-six = "^1.0.5"
six = "^1.16.0"
django-revproxy = "^0.12.0"
pillow = "^10.3.0"
django-qr-code = "^3.1.1"
django-ipware = "^6.0.0"
reportlab = "^4.0.7"
pypdf2 = "^3.0.1"
lxml = "^4.9.3"
jsonfield2 = "^4.0.0.post0"
django-money = "^3.4.0"
requests = "^2.32.2"
python-dateutil = "^2.8.2"
django-versatileimagefield = "^3.0"
mysqlclient = "^2.2.0"
djproxy = "^2.3.6"
django-bootstrap5 = "^23.4"
django-flatpickr = "^2.0.3"
djangorestframework = "^3.15.2"
channels = {extras = ["daphne"], version = "^4.1.0"}
websockets = "^12.0"
[tool.poetry.group.dev.dependencies]
ruff = "^0.1.6"
pre-commit = "^3.5.0"
[tool.black]
target-version = ["py311"]
[tool.isort]
profile = "black"
[tool.ruff]
# Enable Pyflakes `E` and `F` codes by default.
ignore = ["E501", "E741"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"