-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
48 lines (44 loc) · 1.13 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
45
46
47
48
[tool.poetry]
name = "fennel"
version = "0.3.0"
description = "A task queue for Python based on Redis Streams."
readme = "README.md"
keywords = ["task", "queue", "background", "redis", "async"]
authors = ["Matt Westcott <[email protected]>"]
license = "MIT"
homepage = "https://fennel.dev"
repository = "https://github.com/mjwestcott/fennel"
[tool.poetry.dependencies]
python = "^3.7"
redis = "^3.3"
aredis = "^1.1.8"
hiredis = "^1.1.0"
uvloop = "^0.14.0"
click = "^7.0"
structlog = "^20.0"
colorama = "^0.4.1"
pydantic = "^1.5"
anyio = {version = "^2.0.0-beta.2", allow-prereleases = true}
[tool.poetry.dev-dependencies]
yapf = "^0.30.0"
flake8 = "^3.7"
isort = "^4.3"
mypy = "^0.720.0"
hypothesis = "^4.36"
freezegun = "^0.3.12"
pytest = "^5.1"
pytest-cov = "^2.7"
pytest-mock = "^1.10"
pytest-mypy = "^0.4.1"
pytest-asyncio = "^0.10.0"
pytest-benchmark = "^3.2"
pytest-clarity = {version = "^0.1.0-alpha.1", allow-prereleases = true}
tox = "^3.14"
sphinx = "^2.1"
sphinx_rtd_theme = "^0.4.3"
sphinx-click = "^2.3"
[tool.poetry.scripts]
fennel = 'fennel.cli:cli'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"