forked from codalab/codabench
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (77 loc) · 1.89 KB
/
pyproject.toml
File metadata and controls
78 lines (77 loc) · 1.89 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
[tool.poetry]
name = "codabench"
version = "0.1.0"
description = ""
authors = ["Codalab"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = ">=3.10,<3.11"
django = "^4.2.0"
django-oauth-toolkit = "1.6.3"
django-cors-middleware = "1.5.0"
social-auth-core = "^4.1.0"
social-auth-app-django = "^5.0.0"
six = "1.16.0"
django-extensions = "^3.2"
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"
pyyaml = "5.3.1"
watchdog = "2.1.1"
argh = "0.26.2"
python-dateutil = "2.7.3"
bpython = "^0.21.0"
websockets = "^10.4.0"
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"
django-ajax-selects = "2.0.0"
dj-database-url = "0.4.2"
psycopg2-binary = "^2.9.9"
django-redis = "4.12.1"
django-storages = {extras = ["azure"], version = "^1.14.6"}
azure-storage-blob = "^12"
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"
flake8 = "3.8.4"
pytest = "^7.0.0"
pytest-django = "^4.5.0"
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"
coreapi = "^2.3.3"
loguru = "^0.7.3"
[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"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"