-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
51 lines (46 loc) · 1.23 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "Ashes.live"
description = "API backend for a fan-developed deckbuilder and community website for the card game Ashes Reborn"
version = "2.0.0a1"
license = "ISC"
readme = "README.md"
authors = ["Ian Beck <[email protected]>"]
packages =[
{ include = "api" }
]
[tool.poetry.dependencies]
python = "^3.10.5"
fastapi = "^0.95.0"
gunicorn = "^20.0.4"
sqlalchemy = "~1.3.23"
alembic = "^1.4.2"
psycopg2 = "^2.8.5"
python-jose = {extras = ["cryptography"], version = "^3.2.0"}
passlib = {extras = ["bcrypt"], version = "^1.7.2"}
python-multipart = "^0.0.6"
email-validator = "^1.1.1"
sendgrid = "^6.4.6"
# Install uvicorn with the pieces from uvicorn[standard] that we will actually use
uvicorn = "^0.22.0"
uvloop = "^0.17.0"
httptools = "^0.5.0"
[tool.poetry.group.dev.dependencies]
# These are used by the test suite
pytest = "^7.1.2"
pytest-cov = "^4.0.0"
sqlalchemy-utils = "^0.41.1"
freezegun = "^1.1.0"
httpx = "^0.24.1"
# These are used by `make format`
black = "^23.3.0"
isort = "^5.4.2"
[tool.poetry.group.vscode.dependencies]
# These are used by VSCode
pylint = "^2.6.0"
rope = "^1.2.0"
[tool.isort]
profile = "black"
multi_line_output = 3