-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (34 loc) · 917 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "backend"
version = "0.1.0"
description = ""
authors = ["Your Name <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.9"
fastapi = "^0.61.1"
uvicorn = "^0.11.8"
sqlalchemy = "^1.3.19"
python-multipart = "^0.0.5"
pydantic = {extras = ["email"], version = "^1.6.1"}
python-jose = {extras = ["cryptography"], version = "^3.2.0"}
passlib = {extras = ["bcrypt"], version = "^1.7.2"}
emails = "^0.6"
jinja2 = "^2.11.2"
fastapi-camelcase = "^1.0.2"
coolname = "^1.1.0"
aiofiles = "^0.6.0"
pytest = "^6.1.1"
mock = "^4.0.2"
pytest-cov = "^2.10.1"
alembic = "^1.4.3"
websocket-client = "^1.2.1"
newrelic = "^6.8.0"
[tool.poetry.dev-dependencies]
flake8 = "^3.8.3"
sqlalchemy-stubs = {url = "https://github.com/dropbox/sqlalchemy-stubs/archive/master.zip"}
requests = "^2.24.0"
pdbpp = "^0.10.2"
bpython = "^0.19"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"