-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
42 lines (37 loc) · 920 Bytes
/
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
[tool.poetry]
name = "openstreetmap-calendar"
version = "2.2.0"
description = ""
authors = ["Thomas Skowron <[email protected]>"]
license = "APACHE 2.0"
[tool.poetry.dependencies]
python = "^3.8"
psycopg2-binary = "~=2.8"
requests = "~=2.32"
requests-oauthlib = "~=1.2"
django-leaflet = "~=0.27"
Django = "~=3.2"
Markdown = "~=3.2"
bleach = "~=3.3"
gunicorn = "~=22.0"
python-dotenv = "~=0.14"
sentry-sdk = "~=2.8"
django-prometheus = "~=2.0"
timezonefinder = "~=6.0"
Babel = "~=2.9"
django-background-tasks = "*"
# django-background-tasks-updated = "==1.2.7" # pinned to a fork which supports Django 4
[tool.poetry.group.dev.dependencies]
PyYaml = "~=6.0"
pylint = "*"
black = "~=24.3.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
target-version = ['py39']
extend-exclude = 'osmcal/migrations'
[tool.pyright]
venvPath = "."
venv = ".venv"