-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
61 lines (54 loc) · 1.38 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]
name = "winterthur-app"
version = "0.1.0"
description = "Web application for the Denig Manuscript project"
authors = ["Jason Heppler <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "winterthur_app"}]
[tool.poetry.dependencies]
python = "^3.11"
django = "^4.1.7"
django-tailwind = "^3.5.0"
django-htmx = "^1.14.0"
django-extensions = "^3.2.1"
django-environ = "^0.10.0"
humanfriendly = "^10.0"
django-taggit = "^5.0.1"
taggit-selectize = "^2.11.0"
django-multiselectfield = "^0.1.12"
pillow = "^9.4.0"
django-admin-interface = "^0.24.2"
python-dotenv = "^1.0.0"
django-import-export = "^3.2.0"
django-allauth = "^0.54.0"
daphne = "^4.0.0"
django-dbml = "^0.6.0"
django-prose = "^1.2.2"
psycopg2 = "^2.9.9"
wagtail = "^6.0.1"
django-modelcluster = "^6.3"
pandas = "^2.2.2"
numpy = "^1.26.4"
django-imagekit = "^5.0.0"
boto3 = "^1.34.128"
django-storages = "^1.14.3"
django-cleanup = "^8.1.0"
whitenoise = "^6.8.2"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
djhtml = "^3.0.6"
pre-commit = "^3.2.1"
django-debug-toolbar = "^4.0.0"
pytest-django = "^4.5.2"
django-extensions = "^3.2.1"
django-coverage-plugin = "^3.0.0"
pylint-django = "^2.5.3"
pytest-sugar = "^0.9.7"
[tool.poetry.group.base.dependencies]
python-slugify = "^8.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.djlint]
profile="django"