-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
37 lines (33 loc) · 1.09 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
[tool.poetry]
name = "egresocovid19"
version = "0.0.1"
description = "Egreso COVID-19 server implementation with FastAPI"
authors = ["Leynier Gutiérrez González <[email protected]>"]
homepage = "https://github.com/codestrange/egresocovid19-server"
repository = "https://github.com/codestrange/egresocovid19-server"
documentation = "https://github.com/codestrange/egresocovid19-server"
readme = "README.md"
[tool.poetry.scripts]
egresocovid19 = "egresocovid19.cli:app"
[tool.poetry.dependencies]
python = "^3.8"
typer = "^0.15.1"
fastapi = {extras = ["all"], version = "^0.99.1"}
python-dotenv = "^1.0.1"
fastapi-restful = {extras = ["all"], version = "^0.4.5"}
python-jose = {extras = ["cryptography"], version = "^3.3.0"}
passlib = {extras = ["bcrypt"], version = "^1.7.4"}
python-multipart = "^0.0.20"
beanie = "^1.28.0"
[tool.poetry.dev-dependencies]
pytest = "^8.3.4"
flake8 = "^5.0.4"
black = "^24.8"
isort = "^5.13.2"
pytest-cov = "^5.0.0"
pytest-asyncio = "^0.24.0"
mimesis = "^12.1.0"
pytest-depends = "^1.0.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"