-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (55 loc) · 1.43 KB
/
pyproject.toml
File metadata and controls
64 lines (55 loc) · 1.43 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[tool.poetry]
name = "rearq"
version = "0.2.9"
description = "A distributed task queue built with asyncio and redis, with built-in web interface"
authors = ["long2ice <long2ice@gmail.com>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/long2ice/rearq.git"
repository = "https://github.com/long2ice/rearq.git"
documentation = "https://github.com/long2ice/rearq/blob/master/README.md"
keywords = ["asyncio", "task", "arq", "queue", "distributed"]
packages = [
{ include = "rearq" }
]
include = ["LICENSE", "README.md", "CHANGELOG.md"]
[tool.poetry.dependencies]
python = "^3.9"
crontab = "*"
fastapi = { version = "*", extras = ["all"] }
loguru = "*"
aiofiles = "*"
asyncmy = { version = "^0.2.8", optional = true }
asyncpg = { version = "*", optional = true }
redis = "^5.0.7"
asyncclick = "^8.1.7.2"
async-timeout = "*"
tortoise-orm = "^0.25.0"
[tool.poetry.group.dev.dependencies]
ruff = "*"
isort = "*"
black = "*"
pytest = "*"
pytest-xdist = "*"
mypy = "*"
pytest-asyncio = "*"
cryptography = "*"
types-redis = "*"
[tool.poetry.extras]
postgres = ["asyncpg"]
mysql = ["asyncmy"]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.poetry.scripts]
rearq = "rearq.cli:main"
[tool.black]
line-length = 100
target-version = ['py36', 'py37', 'py38', 'py39']
[tool.pytest.ini_options]
asyncio_mode = 'auto'
[tool.mypy]
pretty = true
ignore_missing_imports = true
[tool.ruff]
line-length = 100