-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
36 lines (32 loc) · 1.11 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
[tool.poetry]
name = "fastapi-healthz"
version = "1.0.0"
description = "A module to have a FastAPI HealthCheck for database, RabbitMQ server, Redis, MongoDB or external URI to validate their healths."
authors = ["Matteo Cacciola <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/matteocacciola/fastapi_healthz"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: FastAPI"
]
[tool.poetry.dependencies]
python = "^3.10"
pika = { version = "^1.3.2", optional = true }
fastapi = "^0.115.0"
pydantic = "^2.8.2"
requests = { version = "^2.31.0", optional = true }
aioredis = { version = "^2.0.1", optional = true }
sqlalchemy = { version = "^2.0.22", optional = true }
pymongo = { version = "^4.7.3", optional = true }
[tool.poetry.dev-dependencies]
[tool.poetry.extras]
rabbitmq = ["pika"]
redis = ["aioredis"]
database = ["sqlalchemy", "asyncpg"]
mongodb = ["pymongo"]
uri = ["requests"]
all = ["pika", "aioredis", "sqlalchemy", "asyncpg", "pymongo", "requests"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"