-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 789 Bytes
/
pyproject.toml
File metadata and controls
32 lines (28 loc) · 789 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
[tool.poetry]
name = "realworld-python-quart-sql"
version = "0.1.0"
description = ""
authors = ["Marcus Vinicius Monteiro de Souza <marcusmonteirodesouza@gmail.com>"]
readme = "README.md"
packages = [{include = "conduit"}]
[tool.poetry.dependencies]
python = "^3.10.9"
psycopg = {extras = ["binary"], version = "^3.1.8"}
quart = "^0.18.3"
quart-schema = "^0.14.3"
validators = "^0.20.0"
hypercorn = "^0.14.3"
quart-jwt-extended = "^0.1.0"
awesome-slugify = "^1.6.5"
shortuuid = "^1.0.11"
[tool.poetry.group.dev.dependencies]
black = "^23.1.0"
python-dotenv = {extras = ["cli"], version = "^0.21.1"}
pytest = "^7.2.1"
pytest-asyncio = "^0.20.3"
faker = "^16.8.1"
pre-commit = "^3.0.4"
pyjwt = "^2.6.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"