2021-08-31 03:08:07 +02:00
|
|
|
[tool.poetry]
|
2021-10-22 15:33:05 +02:00
|
|
|
name = "redis-om"
|
2023-07-12 10:19:04 +02:00
|
|
|
version = "0.1.3"
|
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.7',
|
|
|
|
'Programming Language :: Python :: 3.8',
|
|
|
|
'Programming Language :: Python :: 3.9',
|
2022-12-28 08:42:14 +01:00
|
|
|
'Programming Language :: Python :: 3.10',
|
|
|
|
'Programming Language :: Python :: 3.11',
|
2022-08-11 16:25:47 +02:00
|
|
|
'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-12-28 08:42:14 +01:00
|
|
|
python = ">=3.7,<4.0"
|
2022-08-10 15:22:27 +02:00
|
|
|
redis = ">=3.5.3,<5.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"
|
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-10-18 09:21:41 +02:00
|
|
|
typing-extensions = "^4.4.0"
|
2023-07-11 13:06:37 +02:00
|
|
|
hiredis = "^2.2.3"
|
2023-01-09 10:22:52 +01:00
|
|
|
more-itertools = ">=8.14,<10.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"
|
2023-02-12 12:54:49 +01:00
|
|
|
black = "^23.1"
|
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"
|
2023-01-25 10:12:39 +01:00
|
|
|
coverage = "^7.1"
|
2022-10-18 14:52:11 +02:00
|
|
|
pytest-cov = "^4.0.0"
|
2023-01-09 10:44:50 +01:00
|
|
|
pytest-xdist = "^3.1.0"
|
2021-10-22 15:33:05 +02:00
|
|
|
unasync = "^0.5.0"
|
2023-01-09 11:21:51 +01:00
|
|
|
pytest-asyncio = "^0.20.3"
|
2023-07-12 10:33:52 +02:00
|
|
|
email-validator = "^2.0.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"
|