-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (35 loc) · 815 Bytes
/
pyproject.toml
File metadata and controls
43 lines (35 loc) · 815 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
43
[tool.poetry]
name = "kvittering"
version = "1.0.0"
description = ""
authors = ["Webkom Abakus <webkom@abakus.no>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
flask = "3.0.1"
gevent = "23.9.1"
fpdf = "1.7.2"
sentry-sdk = {extras = ["flask"], version = "^1.39.2"}
pdf2image = "1.17.0"
pillow-heif = "^0.13.0"
google = "3.0.0"
google-api-python-client = "2.115.0"
[tool.poetry.group.dev.dependencies]
black = "^24.3.0"
isort = "^5.13.2"
mailinglogger = "^6.0.0"
pytest = "^8.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
target-version = ['py37']
preview = true
[tool.isort]
py_version = 37
profile = "black"
force_single_line = true
combine_as_imports = true
lines_between_types = 1
lines_after_imports = 2
src_paths = ["server"]