-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 881 Bytes
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 881 Bytes
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
[tool.ruff]
line-length = 120
target-version = "py312"
extend-exclude = ["*/migrations/*"]
[tool.ruff.lint]
select = ["E", "F", "W", "PL"]
[tool.pyright]
venvPath = "."
venv = ".venv"
[project]
authors = [{ name = "Thomas Skowron", email = "th@skowron.eu" }]
license = { text = "APACHE 2.0" }
requires-python = "<4.0,>=3.12"
dependencies = [
"psycopg[binary]>=3.1",
"requests~=2.32",
"requests-oauthlib~=1.2",
"django-leaflet~=0.33",
"Django~=6.0",
"Markdown~=3.2",
"bleach~=6.3",
"gunicorn~=25.0",
"python-dotenv~=1.1.0",
"sentry-sdk~=2.53",
"django-prometheus~=2.0",
"tzfpy>=0.15",
"Babel~=2.9",
"pytz~=2025.2",
"tzdata",
"django-tasks-db~=0.12",
"icalendar>=7.0.3",
]
name = "openstreetmap-calendar"
version = "2.2.0"
description = ""
package-mode = false
[dependency-groups]
dev = ["PyYaml~=6.0", "ruff"]