forked from luebke-dev/signal-cli-rest-api
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 728 Bytes
/
pyproject.toml
File metadata and controls
35 lines (30 loc) · 728 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
[tool.poetry]
name = "signal-cli-rest-api"
version = "0.2.0"
description = ""
readme = "README.md"
repository = "https://github.com/SebastianLuebke/signal-cli-rest-api"
authors = ["Sebastian Noel Lübke <sebastian@luebke.io>"]
[tool.poetry.dependencies]
python = "~3.9"
fastapi = ">=0.95.2"
uvicorn = "^0.16.0"
python-jose = "^3.1.0"
pyqrcode = "^1.2.1"
pypng = "^0.0.20"
aiofiles = "^0.6.0"
httpx = ">=0.16.1,<0.24.0"
[tool.poetry.dev-dependencies]
pytest = "^7.2.0"
flake8 = "^3.8.3"
pylint = "^2.5.3"
autoflake = "^1.4"
black = "^20.8b1"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
line_length = 88
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"