2021-08-31 03:08:07 +02:00
|
|
|
[tool.poetry]
|
2021-09-01 00:52:21 +02:00
|
|
|
name = "redis-developer"
|
2021-08-31 03:08:07 +02:00
|
|
|
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]
|
2021-09-01 00:52:21 +02:00
|
|
|
python = "^3.8"
|
2021-08-31 03:08:07 +02:00
|
|
|
redis = "^3.5.3"
|
|
|
|
aioredis = "^2.0.0"
|
|
|
|
pydantic = "^1.8.2"
|
2021-09-16 02:41:45 +02:00
|
|
|
click = "^8.0.1"
|
|
|
|
six = "^1.16.0"
|
2021-08-31 03:08:07 +02:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
pytest = "^6.2.4"
|
|
|
|
ipdb = "^0.13.9"
|
|
|
|
|
2021-09-16 02:41:45 +02:00
|
|
|
[tool.poetry.scripts]
|
|
|
|
migrate = "redis_developer.orm.cli.migrate:migrate"
|
|
|
|
|
2021-08-31 03:08:07 +02:00
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|