2021-08-31 03:08:07 +02:00
|
|
|
[tool.poetry]
|
2021-10-22 15:33:05 +02:00
|
|
|
name = "redis-om"
|
2021-11-10 20:43:40 +01:00
|
|
|
version = "0.0.12"
|
2021-11-10 21:06:09 +01:00
|
|
|
description = "Objecting mapping, and more, for Redis."
|
2021-10-22 15:53:39 +02:00
|
|
|
authors = ["Andrew Brookins <andrew.brookins@redis.com>"]
|
2021-10-30 02:31:36 +02:00
|
|
|
maintainers = ["Andrew Brookins <andrew.brookins@redis.com>"]
|
2021-10-22 15:53:39 +02:00
|
|
|
license = "BSD-3-Clause"
|
|
|
|
readme = "README.md"
|
2021-10-30 02:31:36 +02:00
|
|
|
repository = "https://github.com/redis-developer/redis-om-python"
|
2021-11-10 00:59:10 +01:00
|
|
|
packages = [
|
|
|
|
{ "include" = "aredis_om" },
|
|
|
|
{ "include" = "redis_om" },
|
|
|
|
]
|
2021-10-30 02:31:36 +02:00
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 3 - Alpha",
|
|
|
|
"Intended Audience :: Developers",
|
2021-11-10 00:59:10 +01:00
|
|
|
"Topic :: Database :: Front-Ends",
|
|
|
|
]
|
|
|
|
include=[
|
|
|
|
"docs/*",
|
|
|
|
"images/*",
|
2021-11-10 20:31:02 +01:00
|
|
|
"redis_om/**/*",
|
2021-10-30 02:31:36 +02:00
|
|
|
]
|
2021-08-31 03:08:07 +02:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2021-11-09 00:49:32 +01:00
|
|
|
python = "^3.7"
|
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-10-06 01:40:02 +02:00
|
|
|
pptree = "^3.1"
|
|
|
|
types-redis = "^3.5.9"
|
|
|
|
types-six = "^1.16.1"
|
|
|
|
python-ulid = "^1.0.3"
|
2021-10-20 23:29:31 +02:00
|
|
|
python-dotenv = "^0.19.1"
|
2021-08-31 03:08:07 +02:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
2021-10-20 22:01:46 +02:00
|
|
|
mypy = "^0.910"
|
2021-08-31 03:08:07 +02:00
|
|
|
pytest = "^6.2.4"
|
|
|
|
ipdb = "^0.13.9"
|
2021-10-20 22:01:46 +02:00
|
|
|
pylint = "^2.11.1"
|
|
|
|
black = "^21.9b0"
|
|
|
|
isort = "^5.9.3"
|
|
|
|
flake8 = "^4.0.1"
|
|
|
|
bandit = "^1.7.0"
|
2021-10-21 02:13:42 +02:00
|
|
|
coverage = "^6.0.2"
|
|
|
|
pytest-cov = "^3.0.0"
|
2021-10-21 08:24:31 +02:00
|
|
|
pytest-xdist = "^2.4.0"
|
2021-10-22 15:33:05 +02:00
|
|
|
unasync = "^0.5.0"
|
|
|
|
pytest-asyncio = "^0.16.0"
|
2021-10-22 15:53:39 +02:00
|
|
|
twine = "^3.4.2"
|
2021-10-22 17:31:08 +02:00
|
|
|
email-validator = "^1.1.3"
|
2021-10-30 02:31:36 +02:00
|
|
|
tox = "^3.24.4"
|
2021-11-01 17:45:37 +01:00
|
|
|
tox-pyenv = "^1.1.0"
|
2021-08-31 03:08:07 +02:00
|
|
|
|
2021-09-16 02:41:45 +02:00
|
|
|
[tool.poetry.scripts]
|
2021-10-22 15:53:39 +02:00
|
|
|
migrate = "redis_om.model.cli.migrate:migrate"
|
2021-09-16 02:41:45 +02:00
|
|
|
|
2021-08-31 03:08:07 +02:00
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|