Work on docs, getting started guide

This commit is contained in:
Andrew Brookins 2021-10-29 17:31:36 -07:00
parent ad6a323fb8
commit f44b7fa664
10 changed files with 434 additions and 12 deletions

View file

@ -3,11 +3,18 @@ name = "redis-om"
version = "0.0.1"
description = "A high-level library containing useful Redis abstractions and tools, like an ORM and leaderboard."
authors = ["Andrew Brookins <andrew.brookins@redis.com>"]
maintainers = ["Andrew Brookins <andrew.brookins@redis.com>"]
license = "BSD-3-Clause"
readme = "README.md"
repository = "https://github.com/redis-developer/redis-om-python"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Database :: Front-Ends"
]
[tool.poetry.dependencies]
python = "^3.8"
python = "^3.9"
redis = "^3.5.3"
aioredis = "^2.0.0"
pydantic = "^1.8.2"
@ -33,6 +40,7 @@ pytest-cov = "^3.0.0"
pytest-xdist = "^2.4.0"
twine = "^3.4.2"
email-validator = "^1.1.3"
tox = "^3.24.4"
[tool.poetry.scripts]
migrate = "redis_om.model.cli.migrate:migrate"