redis-om-python/pyproject.toml

63 lines
1.3 KiB
TOML
Raw Normal View History

[tool.poetry]
name = "redis-om"
2021-11-11 01:48:40 +01:00
version = "0.0.14"
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"
aioredis = "^2.0.0"
pydantic = "^1.8.2"
click = "^8.0.1"
six = "^1.16.0"
pptree = "^3.1"
types-redis = "^3.5.9"
types-six = "^1.16.1"
python-ulid = "^1.0.3"
python-dotenv = "^0.19.1"
2021-11-11 01:43:31 +01:00
cleo = "1.0.0a4"
[tool.poetry.dev-dependencies]
mypy = "^0.910"
pytest = "^6.2.4"
ipdb = "^0.13.9"
pylint = "^2.11.1"
black = "^21.9b0"
isort = "^5.9.3"
flake8 = "^4.0.1"
bandit = "^1.7.0"
coverage = "^6.1.2"
2021-10-21 02:13:42 +02:00
pytest-cov = "^3.0.0"
2021-10-21 08:24:31 +02:00
pytest-xdist = "^2.4.0"
unasync = "^0.5.0"
pytest-asyncio = "^0.16.0"
2021-10-22 15:53:39 +02:00
twine = "^3.4.2"
2021-10-22 17:31:08 +02:00
email-validator = "^1.1.3"
2021-10-30 02:31:36 +02:00
tox = "^3.24.4"
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"