-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (37 loc) · 1.01 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[tool.poetry]
name = "droombot"
version = "0.2.0"
description = "A Discord Bot for generating images from text prompts"
authors = ["Sander Bollen <sander@sndrtj.eu>"]
readme = "README.md"
packages = [
{include = "droombot", from = "src" }
]
license = "Apache-2.0"
homepage = "https://github.com/sndrtj/droombot"
classifiers = [
"Development Status :: 3 - Alpha",
"Topic :: Communications :: Chat",
]
[tool.poetry.dependencies]
python = "^3.10"
aiohttp = {version ="^3.8.4", extras = ['speedups'] }
pydantic = "^2.7.2"
click = "^8.1.3"
py-cord = {extras = ["speed"], version = "^2.4.1"}
redis = {extras = ["hiredis"], version = "^4.5.4"}
aiolimiter = "^1.0.0"
typing-extensions = "^4.12.0"
[tool.poetry.group.dev.dependencies]
mypy = "^1.1.1"
ruff = "^0.4.7"
pytest = "^7.2.2"
pre-commit = "^3.2.1"
types-redis = "^4.5.4.1"
[tool.poetry.scripts]
droombot = 'droombot.cli:cli'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I"]