-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (36 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
50 lines (36 loc) · 1.02 KB
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
44
45
46
47
48
49
50
[tool.poetry]
name = "fastapi-realworld-example-app"
version = "0.0.0"
description = "Backend logic implementation for https://github.com/gothinkster/realworld with awesome FastAPI"
authors = ["Nik Sidnev <sidnev.nick@gmail.com>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.7"
uvicorn = "^0.10.8"
fastapi = "^0.44.0"
pydantic = {version = "^1.2", extras = ["email"]}
passlib = {version = "^1.7", extras = ["bcrypt"]}
pyjwt = "^1.7"
asyncpg = "^0.20.0"
alembic = "^1.3"
databases = {version = "^0.2.6", extras = ["postgresql"]}
python-slugify = "^4.0"
Unidecode = "^1.1"
loguru = "^0.3.2"
[tool.poetry.dev-dependencies]
black = {version = "^19.10-beta.0", allows-prereleases = true}
isort = "^4.3"
autoflake = "^1.3"
wemake-python-styleguide = "^0.13.1"
mypy = "^0.740"
flake8-fixme = "^1.1"
pytest = "^5.3"
pytest-cov = "^2.8"
pytest-asyncio = "^0.10.0"
pytest-xdist = "^1.30"
docker = "^4.0"
httpx = "^0.8.0"
asgi-lifespan = "^0.6.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"