-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (51 loc) · 1.38 KB
/
pyproject.toml
File metadata and controls
54 lines (51 loc) · 1.38 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
[project]
authors = [
{name = "Scott Rubin", email = "apreche@frontrowcrew.com"},
]
requires-python = "<3.14,>=3.13"
name = "frontrowcrew"
version = "0.1.0"
description = ""
dependencies = [
"atproto>=0.0.63,<0.0.64",
"boto3>=1.40.67,<1.41.0",
"crispy-bootstrap5>=2025.6,<2025.7",
"django>=5.2.8,<5.3.0",
"django-crispy-forms>=2.4,<2.6",
"django-extensions>=4.1,<4.2",
"django-model-utils>=5.0.0,<5.1.0",
"django-pagedown>=2.2.1,<2.3.0",
"django-readonly-field>=1.3.0,<1.4.0",
"django-storages>=1.14.6,<1.15.0",
"django-taggit>=6.1.0,<6.2.0",
"docutils>=0.22.2,<0.22.4",
"factory-boy>=3.3.3,<3.4.0",
"gunicorn[gevent]>=23.0.0,<23.1.0",
"markdown>=3.10,<3.11",
"mdgen>=0.1.10,<0.1.11",
"mutagen>=1.47.0,<1.48.0",
"pillow>=12.0.0,<12.1.0",
"procrastinate[django]>=3.5.3,<3.6.0",
"psycopg[pool]>=3.2.12,<3.3.0",
"pymemcache>=4.0.0,<4.1.0",
"python-magic>=0.4.27,<0.4.28",
"python-xmp-toolkit>=2.0.2,<2.1.0",
"requests>=2.32.5,<2.33.0",
"tqdm>=4.67.1,<4.68.0",
]
[tool.uv]
add-bounds = "minor"
[dependency-groups]
dev = [
"coverage>=7.11.0,<7.12.0",
"django-debug-toolbar>=6.1.0,<6.2.0",
"ipdb>=0.13.13,<0.13.14",
"ipython>=9.7.0,<9.8.0",
"pgcli>=4.3.0,<4.4.0",
"pympler>=1.1,<1.2",
"setuptools>=80.9.0,<80.10.0",
"werkzeug>=3.1.3,<3.2.0",
]
test = [
"tblib>=3.2.1,<3.3.0",
]