You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

70 lines
1.7 KiB
TOML

[tool.poetry]
name = "redis-om"
version = "0.3.0"
description = "Object mappings, and more, for Redis."
authors = ["Redis OSS <oss@redis.com>"]
maintainers = ["Redis OSS <oss@redis.com>"]
license = "BSD-3-Clause"
readme = "README.md"
repository = "https://github.com/redis/redis-om-python"
packages = [
{ "include" = "aredis_om" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Database",
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python',
]
include=[
"docs/*",
"images/*",
"redis_om/**/*",
]
[tool.poetry.urls]
"Code" = "https://github.com/redis/redis-om-python"
"Issue tracker" = "https://github.com/redis/redis-om-python/issues"
[tool.poetry.dependencies]
python = "^3.9"
redis = ">=3.5.3,<5.0.0"
pydantic = "^2.1.0"
click = "^8.0.1"
types-redis = ">=3.5.9,<5.0.0"
python-ulid = "^2.0.0"
typing-extensions = "^4.4.0"
hiredis = "^2.2.3"
more-itertools = ">=8.14,<10.0"
setuptools = "^69.1.0"
[tool.poetry.dev-dependencies]
mypy = "^0.982"
pytest = "^7.1.3"
ipdb = "^0.13.9"
black = "^23.1"
isort = "^5.9.3"
flake8 = "^5.0.4"
bandit = "^1.7.4"
coverage = "^7.1"
pytest-cov = "^4.0.0"
pytest-xdist = "^3.1.0"
unasync = "^0.5.0"
pytest-asyncio = "^0.20.3"
email-validator = "^2.0.0"
tox = "^3.26.0"
tox-pyenv = "^1.1.0"
[tool.poetry.scripts]
migrate = "redis_om.model.cli.migrate:migrate"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"