-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 884 Bytes
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 884 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
33
34
35
36
[tool.poetry]
name = "fastapi-laser"
version = "0.1.0"
description = "FastAPI LASER"
authors = ["Tech <tech@settle.eu>"]
license = "MIT"
packages = [
{ include = "fastapi_laser", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.9"
fastapi = {version = "^0.88.0", extras = ["all"]}
loguru = "^0.5.3"
SQLAlchemy = "^1.4.22"
alembic = "^1.5.1"
google-cloud-logging = "^2.1.1"
[tool.poetry.dev-dependencies]
# https://python-poetry.org/docs/dependency-specification
# TEST: Uncomment to include the current app in editable install mode
flake8 = "^3.8.4"
pylint = "^2.6.0"
black = "^21.12b0"
isort = "^5.6.4"
autoflake = "^1.4"
pytest = "^6.2.1"
pytest-cov = "^2.10.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
db-migrations = "app.database.migrations.cli:cli"
probe-db = "app.probes:db_health_check"