-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (87 loc) · 2.3 KB
/
pyproject.toml
File metadata and controls
91 lines (87 loc) · 2.3 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[project]
name = "codabench"
version = "0.1.0"
description = ""
authors = [{ name = "Codalab" }]
requires-python = ">=3.10,<3.11"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"django>=4.2.0,<5",
"django-oauth-toolkit==1.6.3",
"django-cors-middleware==1.5.0",
"social-auth-core>=4.1.0,<5",
"social-auth-app-django>=5.0.0,<6",
"six==1.16.0",
"django-extensions>=3.2,<4",
"channels==4.2.0",
"channels-redis==4.0.0",
"pillow==10.3.0",
"celery==4.4.7",
"gunicorn==22.0.0",
"urllib3>=1.25.4,<1.27",
"uvicorn>=0.22.0,<0.23",
"pyyaml==5.3.1",
"watchdog==2.1.1",
"argh==0.26.2",
"python-dateutil==2.7.3",
"bpython>=0.21.0,<0.22",
"websockets>=10.4.0,<11",
"aiofiles==0.4.0",
"oyaml==0.7",
"factory-boy==2.11.1",
"bleach>=5.0.0",
"django-debug-toolbar==3.2",
"django-querycount==0.7.0",
"blessings==1.7",
"django-su>=1.0.0,<2",
"django-ajax-selects==2.0.0",
"dj-database-url==0.4.2",
"psycopg2-binary>=2.9.9,<3",
"django-redis==4.12.1",
"django-storages[azure]>=1.14.6,<2",
"azure-storage-blob>=12,<13",
"azure-storage-common==2.1.0",
"boto3==1.26.76",
"whitenoise==5.2.0",
"djangorestframework>=3.13.0",
"djangorestframework-csv==3.0.1",
"drf-extensions==0.4.0",
"markdown==2.6.11",
"pygments==2.2.0",
"drf-writable-nested==0.6.2",
"django-filter==2.4.0",
"flex==6.12.0",
"pyrabbit2==1.0.7",
"django-enforce-host==1.0.1",
"twisted==24.7.0",
"ipdb==0.13",
"jinja2==3.1.4",
"requests==2.32.2",
"drf-extra-fields>=3.5.0",
"botocore==1.29.76",
"s3transfer==0.6.0",
"drf-spectacular>=0.28.0,<0.29",
"coreapi>=2.3.3,<3",
"loguru>=0.7.3,<0.8",
"tzdata>=2025.3",
]
[tool.uv]
package = false
[build-system]
requires = ["uv_build>=0.9.16,<0.10.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"flake8>=3.8.4",
"pytest==7.4.4",
"pytest-django==4.11.1",
]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "settings.develop" # Just "settings" since pytest will be running from src/
pythonpath = [".", "src", "src/apps"]
testpaths = ["src"] # Tell pytest to look for tests in src/
addopts = "-v --tb=short --reuse-db"