-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
77 lines (69 loc) · 1.78 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[tool.poetry]
name = "redis-model-store"
version = "0.0.1"
description = "Library to handle versioning and serialization of AI/ML models into Redis."
authors = ["Tyler Hutcherson <tyler.hutcherson@redis.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/redis-applied-ai/redis-model-store"
repository = "https://github.com/redis-applied-ai/redis-model-store"
keywords = ["ai", "redis", "redis-client", "model-store", "mlops"]
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
]
packages = [{ include = "redis_model_store", from = "." }]
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
redisvl = "^0.3.8"
pydantic = "^2.10.5"
[tool.poetry.group.dev.dependencies]
black = ">=20.8b1"
isort = ">=5.6.4"
pylint = "3.1.0"
pytest = "8.1.1"
pytest-cov = "5.0.0"
mypy = "1.9.0"
types-redis = "*"
types-pyyaml = "*"
types-tabulate = "*"
treon = "*"
[tool.poetry.group.test.dependencies]
testcontainers = "^4.3.1"
[tool.poetry.scripts]
format = "scripts:format"
check-format = "scripts:check_format"
sort-imports = "scripts:sort_imports"
check-sort-imports = "scripts:check_sort_imports"
check-lint = "scripts:check_lint"
check-mypy = "scripts:check_mypy"
test = "scripts:test"
test-verbose = "scripts:test_verbose"
test-notebooks = "scripts:test_notebooks"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
target-version = ['py39', 'py310', 'py311']
exclude = '''
(
| \.egg
| \.git
| \.hg
| \.mypy_cache
| \.nox
| \.tox
| \.venv
| _build
| build
| dist
| setup.py
)
'''
[tool.pytest.ini_options]
log_cli = true
[tool.mypy]
warn_unused_configs = true
ignore_missing_imports = true