mirror of
https://github.com/aljazceru/payments-rest-api.git
synced 2025-12-20 06:54:23 +01:00
19 lines
504 B
TOML
19 lines
504 B
TOML
[tool.poetry]
|
|
name = "payments-rest-api"
|
|
version = "0.1.0"
|
|
description = "A FastAPI implementation of Breez SDK for Lightning/Liquid payments"
|
|
authors = ["Aljaz Ceru <aljaz@ceru.si>"]
|
|
readme = "README.md"
|
|
package-mode = false
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
fastapi = "^0.111.0"
|
|
uvicorn = {extras = ["standard"], version = "^0.30.1"}
|
|
breez-sdk-liquid = "0.8.2"
|
|
python-dotenv = "^1.0.1"
|
|
requests = "^2.31.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api" |