2021-08-31 03:08:07 +02:00
|
|
|
[tool.poetry]
|
2021-10-22 15:33:05 +02:00
|
|
|
name = "redis-om"
|
2022-05-13 12:57:00 +02:00
|
|
|
version = "0.0.27"
|
2022-08-11 16:25:47 +02:00
|
|
|
description = "Object mappings, and more, for Redis."
|
|
|
|
authors = ["Redis OSS <oss@redis.com>"]
|
|
|
|
maintainers = ["Redis OSS <oss@redis.com>"]
|
2021-10-22 15:53:39 +02:00
|
|
|
license = "BSD-3-Clause"
|
|
|
|
readme = "README.md"
|
2022-09-01 12:11:29 +02:00
|
|
|
repository = "https://github.com/redis/redis-om-python"
|
2021-11-10 00:59:10 +01:00
|
|
|
packages = [
|
2021-11-11 01:44:28 +01:00
|
|
|
{ "include" = "aredis_om" },
|
2021-11-10 00:59:10 +01:00
|
|
|
]
|
2021-10-30 02:31:36 +02:00
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 3 - Alpha",
|
2022-08-11 16:25:47 +02:00
|
|
|
"Environment :: Console",
|
2021-10-30 02:31:36 +02:00
|
|
|
"Intended Audience :: Developers",
|
2022-08-11 16:25:47 +02:00
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Topic :: Database",
|
|
|
|
'License :: OSI Approved :: BSD License',
|
|
|
|
'Programming Language :: Python :: 3.10',
|
|
|
|
'Programming Language :: Python :: 3.7',
|
|
|
|
'Programming Language :: Python :: 3.8',
|
|
|
|
'Programming Language :: Python :: 3.9',
|
|
|
|
'Programming Language :: Python',
|
2021-11-10 00:59:10 +01:00
|
|
|
]
|
|
|
|
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
|
|
|
|
2022-08-11 16:25:47 +02:00
|
|
|
[tool.poetry.urls]
|
|
|
|
"Code" = "https://github.com/redis/redis-om-python"
|
|
|
|
"Issue tracker" = "https://github.com/redis/redis-om-python/issues"
|
|
|
|
|
2021-08-31 03:08:07 +02:00
|
|
|
[tool.poetry.dependencies]
|
2022-08-10 15:22:27 +02:00
|
|
|
python = "^3.7,<=3.11"
|
|
|
|
redis = ">=3.5.3,<5.0.0"
|
|
|
|
aioredis = "^2.0.0"
|
2022-09-19 10:40:51 +02:00
|
|
|
pydantic = "^1.10.2"
|
2021-09-16 02:41:45 +02:00
|
|
|
click = "^8.0.1"
|
2021-10-06 01:40:02 +02:00
|
|
|
pptree = "^3.1"
|
2022-01-05 21:37:26 +01:00
|
|
|
types-redis = ">=3.5.9,<5.0.0"
|
2021-10-06 01:40:02 +02:00
|
|
|
python-ulid = "^1.0.3"
|
2022-06-10 11:26:03 +02:00
|
|
|
cleo = "1.0.0a5"
|
2022-10-18 09:21:41 +02:00
|
|
|
typing-extensions = "^4.4.0"
|
2021-11-24 22:38:35 +01:00
|
|
|
hiredis = "^2.0.0"
|
2022-08-10 15:22:27 +02:00
|
|
|
more-itertools = "^8.14.0"
|
2021-08-31 03:08:07 +02:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
2022-10-18 14:47:50 +02:00
|
|
|
mypy = "^0.982"
|
2022-09-19 10:34:07 +02:00
|
|
|
pytest = "^7.1.3"
|
2021-08-31 03:08:07 +02:00
|
|
|
ipdb = "^0.13.9"
|
2022-10-18 14:49:55 +02:00
|
|
|
black = "^22.10"
|
2021-10-20 22:01:46 +02:00
|
|
|
isort = "^5.9.3"
|
2022-08-09 13:40:09 +02:00
|
|
|
flake8 = "^5.0.4"
|
2022-03-07 04:25:51 +01:00
|
|
|
bandit = "^1.7.4"
|
2022-05-23 05:40:16 +02:00
|
|
|
coverage = "^6.4"
|
2021-10-21 02:13:42 +02:00
|
|
|
pytest-cov = "^3.0.0"
|
2022-01-05 21:31:34 +01:00
|
|
|
pytest-xdist = "^2.5.0"
|
2021-10-22 15:33:05 +02:00
|
|
|
unasync = "^0.5.0"
|
2022-07-18 11:59:40 +02:00
|
|
|
pytest-asyncio = "^0.19.0"
|
2022-09-19 10:54:24 +02:00
|
|
|
email-validator = "^1.3.0"
|
2022-09-19 10:46:50 +02:00
|
|
|
tox = "^3.26.0"
|
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"]
|
2022-09-07 10:15:00 +02:00
|
|
|
build-backend = "poetry.core.masonry.api"
|