-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
executable file
·44 lines (38 loc) · 1.03 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
[tool.poetry]
name = "gischat"
version = "2.0.0"
description = "GIS chat backend for QGIS and QField"
authors = ["Guilhem Allaman <contact@guilhemallaman.net>"]
readme = "README.md"
packages = [{include = "gischat"}]
[tool.poetry.dependencies]
python = "^3.10"
fastapi = "^0.111.1"
uvicorn = {extras = ["standard"], version = "^0.30.1"}
colorlog = "^6.8.2"
websockets = "^12.0"
pydantic = "^2.8.2"
toml = "^0.10.2"
jinja2 = "^3.1.4"
sentry-sdk = {extras = ["fastapi"], version = "^2.11.0"}
pillow = "^11.0.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.7.1"
pytest = "^8.2.2"
pytest-cov = "^5.0.0"
codecov = "^2.1.13"
black = "^24.4.2"
isort = "^5.13.2"
flake8 = "^7.1.0"
[tool.pytest]
addopts = "--junitxml=junit/test-results.xml --cov=gischat --cov-report=html --cov-report=term --cov-report=xml"
junit_family = "xunit2"
python_files = "test_*.py"
testpaths = "tests"
[tool.coverage.run]
branch = true
[tool.coverage.report]
include = ["gischat/*.py"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"