discollama/pyproject.toml

29 lines
493 B
TOML
Raw Permalink Normal View History

2023-07-28 20:00:40 -07:00
[tool.poetry]
name = "discollama"
version = "0.1.0"
description = ""
authors = ["Michael Yang <mxyng@pm.me>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
discord-py = "^2.3.1"
2023-10-09 16:59:22 -07:00
redis = "^5.0.1"
2023-12-24 19:31:17 -08:00
ollama = "^0.1.0"
2023-07-28 20:00:40 -07:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
2023-12-23 15:14:08 -08:00
[tool.ruff]
line-length = 999
indent-width = 2
[tool.ruff.format]
quote-style = "single"
indent-style = "space"
[tool.ruff.lint]
select = ["E", "F", "B"]
ignore = ["E501"]