forked from redis/redis-om-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
63 lines (59 loc) · 1.38 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[tool.poetry]
name = "redis-om"
version = "0.0.27"
description = "Objecting mapping, and more, for Redis."
authors = ["Andrew Brookins <[email protected]>"]
maintainers = ["Andrew Brookins <[email protected]>"]
license = "BSD-3-Clause"
readme = "README.md"
repository = "https://github.com/redis-developer/redis-om-python"
packages = [
{ "include" = "aredis_om" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Database :: Front-Ends",
]
include=[
"docs/*",
"images/*",
"redis_om/**/*",
]
[tool.poetry.dependencies]
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"
cleo = "1.0.0a4"
typing-extensions = "^4.0.0"
hiredis = "^2.0.0"
[tool.poetry.dev-dependencies]
mypy = "^0.960"
pytest = "^7.1.2"
ipdb = "^0.13.9"
pylint = "^2.13.9"
black = "^22.3"
isort = "^5.9.3"
flake8 = "^4.0.1"
bandit = "^1.7.4"
coverage = "^6.4"
pytest-cov = "^3.0.0"
pytest-xdist = "^2.5.0"
unasync = "^0.5.0"
pytest-asyncio = "^0.18.3"
twine = "^4.0.1"
email-validator = "^1.2.1"
tox = "^3.25.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"