aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: b9912246d3c630a39fb2d9bf70eb94cbf4f1cdbc (plain) (blame)
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
[tool.poetry]
name = "backend"
version = "0.1.0"
description = "Backend for Python Discord Forms"
authors = ["Joe Banks <[email protected]>"]
license = "MIT"

[tool.poetry.dependencies]
python = "^3.9"
starlette = "^0.19.0"
nested_dict = "^1.61"
uvicorn = {extras = ["standard"], version = "^0.17.6"}
motor = "^2.4.0"
python-dotenv = "^0.19.2"
pyjwt = "^2.3.0"
httpx = "^0.22.0"
gunicorn = "^20.1.0"
pydantic = "^1.8.2"
spectree = "^0.7.6"
deepmerge = "^1.0.1"
sentry-sdk = "^1.0.0"

[tool.poetry.dev-dependencies]
flake8 = "^4.0.1"
flake8-annotations = "^2.7.0"

[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"