update pyproject

This commit is contained in:
Sam 2024-11-07 21:41:31 +00:00
parent 7f4efbfe50
commit db9fc35715
2 changed files with 23 additions and 0 deletions

1
.gitignore vendored
View File

@ -6,3 +6,4 @@
backend/api_logs.txt
*__pycache__*
.env
poetry.lock

22
pyproject.toml Normal file
View File

@ -0,0 +1,22 @@
[tool.poetry]
name = "baseddata-io"
version = "0.1.0"
description = ""
authors = ["Sam <samual.shop@proton.me>"]
readme = "README.md"
packages = [{include = "baseddata"}]
package-mode = false
[virtualenvs]
in-project = true
[tool.poetry.dependencies]
python = "^3.11"
fastapi = "^0.115.4"
uvicorn = "^0.32.0"
psycopg2 = "^2.9.10"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"