-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (30 loc) · 845 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (30 loc) · 845 Bytes
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
[tool.poetry]
name = "restq-py"
version = "0.1.0"
description = "Restq is a lightweight high-performance task queue built on top of Redis"
authors = ["dakohhh <wiizzydreadmill@gmail.com>"]
repository = "https://github.com/dakohhh/restq"
homepage = "https://github.com/dakohhh/restq"
license = "MIT"
readme = "README.md"
keywords = ["queue", "task", "worker", "lightweight"]
[tool.poetry.dependencies]
# python = "^3.12"
python = ">=3.9,<4.0"
redis = "5.3.1"
orjson = "^3.11.1"
colorama = "^0.4.6"
pydantic = "^2.11.7"
anyio = "^4.10.0"
[tool.poetry.group.dev.dependencies]
mypy = "^1.17.0"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.6.1"
mkdocs-material = "^9.6.18"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
python_version = "3.12"
ignore_missing_imports = true
strict = true