-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
64 lines (57 loc) · 1.43 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[project]
name = "botc-scripts"
version = "0.1.0"
description = ""
authors = [{ name = "Geoff Thomas" }]
requires-python = "<4.0,>=3.10"
license = { text = "MIT" }
dependencies = [
"Django<6.0,>=5.1",
"django-versionfield<2.0.0,>=1.0.2",
"packaging<25.0,>=24.2",
"django-tables2<3.0.0,>=2.4.1",
"django-bootstrap4<25.0,>=24.1",
"django-filter<25.0,>=24.2",
"djangorestframework<4.0.0,>=3.12.2",
"psycopg2-binary<3.0.0,>=2.9.9",
"django-storages[azure]<2.0.0,>=1.11.1",
"django-allauth[socialaccount]<66.0.0,>=65.2.0",
"django-bootstrap-icons<1.0.0,>=0.9.0",
"Babel<3.0.0,>=2.13.1",
"django-markdownify<1.0.0,>=0.9.2",
"requests<3.0.0,>=2.31.0",
"django-cors-headers<5.0.0,>=4.3.0",
"jsonschema<5.0.0,>=4.23.0",
]
requires-plugins = { poetry-plugin-export = ">=1.8" }
package-mode = false
[dependency-groups]
dev = [
"pytest>=8.3.2,<9",
"pytest-django>=4.9.0,<5",
"pytest-cov>=6.0.0,<7",
"isort",
"mypy",
"ruff",
]
[tool.uv]
package = false
[tool.pdm.dev-dependencies]
dev = [
"pytest<9.0.0,>=8.3.2",
"pytest-django<5.0.0,>=4.9.0",
"pytest-cov<7.0.0,>=6.0.0",
"isort",
"mypy",
"ruff",
]
[tool.pdm.build]
includes = []
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.ruff]
exclude = ["scripts/migrations","botc/", "manage.py"]
line-length = 120
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "tests.settings"