2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2024-12-18 14:32:19 +00:00
troggle/server.toml

27 lines
641 B
TOML
Raw Normal View History

2024-12-15 18:48:28 +00:00
# Do not edit pyproject.toml, it is overwritten.
# Instead, edit dev.toml and/or server.toml
[tool.ruff]
# https://docs.astral.sh/ruff/configuration/
# we do not use black or isort, we use ruff instead
2024-12-15 18:55:07 +00:00
# to sort imports, ruff check --select I --fix
2024-12-15 18:48:28 +00:00
line-length=120
lint.ignore = ["E402", "F541"]
2024-12-14 03:14:55 +00:00
[project]
name = "troggle-server"
version = "2024.12.1"
description = "Troggle - cave data management"
readme = "README.md"
requires-python = ">=3.11,<3.12"
dependencies = [
"django==3.2.19",
"beautifulsoup4==4.11.2",
"piexif==1.1.3",
"pillow==9.4.0",
"unidecode==1.3.6",
2024-12-15 18:48:28 +00:00
"black>=24.10.0",
"coverage>=7.6.9",
]
2024-12-14 03:14:55 +00:00
]