31a86cf11c
Bumps [pytest-xdist](https://github.com/pytest-dev/pytest-xdist) from 2.5.0 to 3.1.0. - [Release notes](https://github.com/pytest-dev/pytest-xdist/releases) - [Changelog](https://github.com/pytest-dev/pytest-xdist/blob/master/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest-xdist/compare/v2.5.0...v3.1.0) --- updated-dependencies: - dependency-name: pytest-xdist dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: dvora-h <67596500+dvora-h@users.noreply.github.com>
72 lines
1.8 KiB
TOML
72 lines
1.8 KiB
TOML
[tool.poetry]
|
|
name = "redis-om"
|
|
version = "0.1.2"
|
|
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.7',
|
|
'Programming Language :: Python :: 3.8',
|
|
'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.7,<4.0"
|
|
redis = ">=3.5.3,<5.0.0"
|
|
pydantic = "^1.10.2"
|
|
click = "^8.0.1"
|
|
pptree = "^3.1"
|
|
types-redis = ">=3.5.9,<5.0.0"
|
|
python-ulid = "^1.0.3"
|
|
typing-extensions = "^4.4.0"
|
|
hiredis = "^2.0.0"
|
|
more-itertools = ">=8.14,<10.0"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
mypy = "^0.982"
|
|
pytest = "^7.1.3"
|
|
ipdb = "^0.13.9"
|
|
black = "^22.10"
|
|
isort = "^5.9.3"
|
|
flake8 = "^5.0.4"
|
|
bandit = "^1.7.4"
|
|
coverage = "^6.4"
|
|
pytest-cov = "^4.0.0"
|
|
pytest-xdist = "^3.1.0"
|
|
unasync = "^0.5.0"
|
|
pytest-asyncio = "^0.19.0"
|
|
email-validator = "^1.3.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"
|