-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (44 loc) · 1.05 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (44 loc) · 1.05 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
[project]
name = "krill"
version = "0.1.0"
description = "Django application"
requires-python = ">=3.10"
dependencies = [
# Core Django
"asgiref==3.7.2",
"Django==5.0.1",
"sqlparse==0.4.4",
"typing_extensions==4.9.0",
# Database
"psycopg2-binary==2.9.9",
"dj-database-url==2.1.0",
# Security
"django-ratelimit==4.1.0",
"django-cors-headers==4.3.1",
"django-axes==6.1.0",
# Environment and Configuration
"python-dotenv==1.0.0",
"django-environ==0.11.2",
# Monitoring and Logging
"sentry-sdk==2.43.0",
# File Handling
"Pillow==10.1.0",
"python-magic==0.4.27",
# API and Serialization
"djangorestframework==3.14.0",
"django-filter==23.5",
# Production and Deployment
"gunicorn==21.2.0",
"whitenoise==6.6.0",
"django-storages==1.14.2",
# Development Tools
"django-extensions==3.2.3",
"ipython==8.17.2",
]
[project.optional-dependencies]
dev = [
"django-debug-toolbar==4.2.0",
"bandit==1.7.5",
"safety==2.3.5",
"coverage==7.3.2",
]