python flask mongodb test

This commit is contained in:
seemygesture 2025-02-06 16:52:36 +08:00
commit e24e17e42b
8 changed files with 562 additions and 0 deletions

19
pyproject.toml Normal file
View file

@ -0,0 +1,19 @@
[project]
name = "pyxr"
version = "0.1.0"
description = ""
authors = [
{name = "seemygesture",email = "seemygesture@gmail.com"}
]
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"flask (>=3.1.0,<4.0.0)",
"pymongo (>=4.11,<5.0)",
"python-dotenv (>=1.0.1,<2.0.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"