aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: 49e0f43ab6f5ea10b1579512bee1b7ca3e153336 (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
[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.14.0"
nested_dict = "^1.61"
uvicorn = {extras = ["standard"], version = "^0.13.0"}
motor = "^2.3.0"
python-dotenv = "^0.15.0"
pyjwt = "^1.7.1"
httpx = "^0.16.1"
gunicorn = "^20.0.4"
pydantic = "^1.7.2"
spectree = "^0.3.16"

[tool.poetry.dev-dependencies]
flake8 = "^3.8.4"
flake8-annotations = "^2.4.1"

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