nextjs-fastapi/pyproject.toml

24 lines
585 B
TOML

[tool.poetry]
name = "nextjs-fastapi"
version = "0.1.0"
description = "Next.js and fastapi starter for github projects"
authors = ["Joey Yakimowich-Payne <jyapayne@pm.me>"]
license = "MIT"
readme = "README.md"
packages = [{include = "nextjs_fastapi"}]
[tool.poetry.dependencies]
python = "^3.10"
fastapi = "^0.101.0"
uvicorn = {extras = ["standard"], version = "^0.23.2"}
sqlalchemy = "^2.0.19"
python-dotenv = "^1.0.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.3.3"
black = "^23.7.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"