redis-om-python/pyproject.toml

65 lines
1.4 KiB
TOML
Raw Normal View History

[tool.poetry]
name = "redis-om"
2022-03-29 23:26:05 +02:00
version = "0.0.21"
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 = [
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",
"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
]
[tool.poetry.dependencies]
2021-11-09 00:49:32 +01:00
python = "^3.7"
redis = ">=3.5.3,<5.0.0"
aioredis = "^2.0.0"
pydantic = "^1.8.2"
click = "^8.0.1"
six = "^1.16.0"
pptree = "^3.1"
types-redis = ">=3.5.9,<5.0.0"
types-six = "^1.16.1"
python-ulid = "^1.0.3"
python-dotenv = ">=0.19.1,<0.21.0"
2021-11-11 01:43:31 +01:00
cleo = "1.0.0a4"
2021-11-24 22:38:35 +01:00
typing-extensions = "^4.0.0"
hiredis = "^2.0.0"
[tool.poetry.dev-dependencies]
mypy = "^0.942"
pytest = "^7.1.1"
ipdb = "^0.13.9"
pylint = "^2.13.3"
black = "^22.3"
isort = "^5.9.3"
flake8 = "^4.0.1"
bandit = "^1.7.4"
coverage = "^6.3"
2021-10-21 02:13:42 +02:00
pytest-cov = "^3.0.0"
pytest-xdist = "^2.5.0"
unasync = "^0.5.0"
pytest-asyncio = "^0.18.3"
twine = "^4.0.0"
2021-10-22 17:31:08 +02:00
email-validator = "^1.1.3"
tox = "^3.24.5"
2021-11-01 17:45:37 +01:00
tox-pyenv = "^1.1.0"
[tool.poetry.scripts]
2021-10-22 15:53:39 +02:00
migrate = "redis_om.model.cli.migrate:migrate"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"