-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (46 loc) · 1.19 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
[project]
name = "private-universities-sms"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"django-cotton>=1.5.1",
"django==5.1.0",
"django-filter>=24.3",
"django-extensions>=3.2.3",
"djangoql>=0.18.1",
"django-import-export[xlsx]>=4.3.3",
"heroicons[django]>=2.9.0",
"django-htmx>=1.21.0",
"mysqlclient>=2.2.6",
"django-widget-tweaks>=1.5.0",
"django-braces>=1.16.0",
"django-content-settings>=0.29.1",
"djangorestframework>=3.15.2",
"djangorestframework-simplejwt[crypto]>=5.3.1",
"python-decouple>=3.8",
"pyyaml>=6.0.2",
]
[dependency-groups]
dev = [
"coverage>=7.6.9",
"django-silk>=5.3.1",
"icecream>=2.1.3",
"pytest-django>=4.9.0",
"pytest>=8.3.4",
"selectolax>=0.3.27",
"pytest-cov>=6.0.0",
"nox>=2024.10.9",
"playwright>=1.49.1",
"pytest-mock>=3.14.0",
"pytest-order>=1.3.0",
]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "project.settings.testing"
python_files = "test_*.py tests.py *_test.py"
addopts ="-m \"not slow\""
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"serial",
]