Initial commit

This commit is contained in:
proDream 2025-01-10 01:43:19 +04:00
commit 4d3efdcd27
5 changed files with 1156 additions and 0 deletions

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# Lkeep
## TODO

0
lkeep/__init__.py Normal file
View File

0
lkeep/main.py Normal file
View File

1134
poetry.lock generated Normal file

File diff suppressed because it is too large Load Diff

19
pyproject.toml Normal file
View File

@ -0,0 +1,19 @@
[project]
name = "lkeep"
version = "0.1.0"
description = ""
authors = [
{name = "proDream",email = "sushkoos@gmail.com"}
]
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"fastapi[standard] (>=0.115.6,<0.116.0)",
"uvicorn[standard] (>=0.34.0,<0.35.0)",
"pre-commit (>=4.0.1,<5.0.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"