-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
53 lines (47 loc) · 1.28 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
49
50
51
52
53
[tool.poetry]
name = "runnel"
version = "0.1.0b1"
description = "Distributed event processing for Python based on Redis Streams"
readme = "README.md"
keywords = ["data", "stream", "processing", "redis", "async"]
authors = ["Matt Westcott <[email protected]>"]
license = "LGPL-3.0-only"
[tool.poetry.dependencies]
python = "^3.7"
aredis = "^1.1.8"
hiredis = "^1.0.1"
pydantic = "^1.5.1"
typer = "^0.3.0"
structlog = "^20.1.0"
colorama = "^0.4.3"
aiostream = "^0.4.1"
croniter = "^0.3.34"
pytz = "^2020.1"
anyio = { version = "^2.0.0-beta.2", allow-prereleases = true }
# For the 'fast' bundle
uvloop = { version = "^0.14.0", optional = true }
xxhash = { version = "^1.4.4", optional = true }
orjson = { version = "^3.2.1", optional = true }
lz4 = { version = "^3.1.0", optional = true }
[tool.poetry.dev-dependencies]
yapf = "^0.30.0"
isort = "^4.3.21"
flake8 = "^3.8.3"
faker = "^4.1.1"
pytest = "^5.4.3"
pytest-asyncio = "^0.14.0"
pytest-benchmark = "^3.2.3"
sphinx = "^3.1.2"
sphinx_rtd_theme = "^0.5.0"
pytest-mock = "^3.2.0"
freezegun = "^0.3.15"
mypy = "^0.782"
tox = "^3.19.0"
coveralls = "^2.1.2"
[tool.poetry.scripts]
runnel = "runnel.cli:cli"
[tool.poetry.extras]
fast = ["uvloop", "xxhash", "orjson", "lz4"]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"