Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ It is designed to provide a variety of features to the server, including moderat
- Poetry for dependency management
- Docker and Docker Compose for optional containerized environments
- Strict typing with `pyright` and type hints
- Type safe ORM using `prisma`
- Type safe ORM using `tortoise`
- Linting and formatting via `ruff`
- Custom CLI via `click` and `poetry` scripts
- Rich logging with `loguru`
Expand Down
166 changes: 137 additions & 29 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ httpx = ">=0.28.0"
jishaku = ">=2.5.2"
loguru = ">=0.7.2"
pillow = ">=11.2.1,<11.3.0"
prisma = ">=0.15.0"
psutil = ">=6.0.0"
pynacl = ">=1.5.0"
python-dotenv = ">=1.0.1"
Expand All @@ -69,6 +68,7 @@ arrow = "^1.3.0"
click = "^8.1.8"
levenshtein = "^0.27.1"
jinja2 = "^3.1.6"
tortoise-orm = {extras = ["asyncpg"], version = "^0.25.0"}

[tool.poetry.group.dev.dependencies]
pre-commit = ">=4.0.0"
Expand Down
Loading