20 lines
391 B
TOML
20 lines
391 B
TOML
[tool.poetry]
|
|
name = "backend"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Abi Raja <abimanyuraja@gmail.com>"]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
fastapi = "^0.95.0"
|
|
uvicorn = "^0.24.0.post1"
|
|
websockets = "^12.0"
|
|
openai = "^1.2.4"
|
|
python-dotenv = "^1.0.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|