WIP on basic non-relational model functionality

This commit is contained in:
Andrew Brookins 2021-08-30 18:08:07 -07:00
commit ccad3de32d
11 changed files with 1666 additions and 0 deletions

20
pyproject.toml Normal file
View file

@ -0,0 +1,20 @@
[tool.poetry]
name = "redis-developer-python"
version = "0.1.0"
description = "A high-level library containing useful Redis abstractions and tools, like an ORM and leaderboard."
authors = ["Andrew Brookins <andrew.brookins@redislabs.com>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.9"
redis = "^3.5.3"
aioredis = "^2.0.0"
pydantic = "^1.8.2"
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
ipdb = "^0.13.9"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"