-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
40 lines (37 loc) · 1.08 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
[tool.poetry]
name = "redis-index"
version = "0.8.0"
description = "Inverted Index using efficient Redis set"
authors = ["Vladimir Vyazovetskov <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/ErhoSen/redis-index"
repository = "https://github.com/ErhoSen/redis-index"
keywords = ["redis", "index", "gin", "intersection", "filters"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
include = [
"LICENSE",
]
[tool.poetry.dependencies]
python = "^3.8"
hot_redis = "^0.3.0"
redis = "<=4.4.4"
inflection = "^0.3.1"
statsd = "^3.3"
[tool.poetry.dev-dependencies]
pytest = "^7.2.0"
black = {version = "^24.3.0", allow-prereleases = true}
ipdb = {version = "^0.12.2", allow-prereleases = true}
fakeredis = "^1.0"
pytest-cov = "^2.8"
pre-commit = "^3.0.4"
[build-system]
requires = ["poetry-core>=1.7.1"]
build-backend = "poetry.core.masonry.api"