-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (82 loc) · 1.95 KB
/
pyproject.toml
File metadata and controls
90 lines (82 loc) · 1.95 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
[project]
name = "sql-redis"
# NOTE: The version below is automatically incremented by the release workflow - do not manually adjust it.
version = "0.5.0"
description = "SQL to Redis command translation utility"
authors = [{ name = "Redis Inc." }]
requires-python = ">=3.9,<3.14"
readme = "README.md"
license = "MIT"
keywords = [
"sql",
"redis",
"redis-client",
"query-translation",
]
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"redis>=5.0.0",
"sqlglot>=26.0.0",
]
[project.urls]
Homepage = "https://github.com/redis-developer/sql-redis"
Repository = "https://github.com/redis-developer/sql-redis"
Documentation = "https://docs.redisvl.com/projects/sql-redis/"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"black>=25.1.0,<26",
"isort>=5.6.4,<6",
"mypy>=1.11.0,<2",
"pytest>=8.0.0,<9",
"pytest-cov>=4.0.0,<5",
"pytest-asyncio>=0.23.6,<0.24",
"pre-commit>=4.1.0,<5",
"codespell>=2.4.1,<3",
"testcontainers[redis]>=4.0.0,<5",
]
docs = [
"mkdocs>=1.6",
"mkdocs-material>=9.5",
"mkdocstrings[python]>=0.26",
"mkdocs-autorefs>=1.2",
"mkdocs-section-index>=0.3",
"mkdocs-git-revision-date-localized-plugin>=1.2",
"mkdocs-llmstxt>=0.2",
"mkdocs-redirects>=1.2",
]
[tool.uv]
default-groups = ["dev"]
[tool.black]
target-version = ['py39', 'py310', 'py311', 'py312', 'py313']
exclude = '''
(
| \.egg
| \.git
| \.hg
| \.mypy_cache
| \.nox
| \.tox
| \.venv
| _build
| build
| dist
| setup.py
)
'''
[tool.pytest.ini_options]
log_cli = true
asyncio_mode = "auto"
[tool.mypy]
warn_unused_configs = true
ignore_missing_imports = true
exclude = ["env", "venv", ".venv"]