19 lines
466 B
TOML
19 lines
466 B
TOML
[tool.poetry]
|
|
name = "pokeritup"
|
|
version = "0.0.1"
|
|
description = "Poker It Up is a Pointing Poker style application."
|
|
authors = ["Elia el Lazkani <elia@lazkani.io>"]
|
|
license = "BSD-2"
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.12"
|
|
fastapi = {extras = ["standard"], version = "^0.115.5"}
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
black = "^24.10.0"
|
|
isort = "^5.13.2"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|