-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (66 loc) · 1.77 KB
/
pyproject.toml
File metadata and controls
74 lines (66 loc) · 1.77 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
[project]
authors = [
{name = "Robert Lechte", email = "robertlechte@gmail.com"},
{name = "Anthony Carapetis", email = "anthony.carapetis@gmail.com"},
]
license = {text = "Unlicense"}
requires-python = ">=3.9"
name = "sqlakeyset"
version = "2.0"
readme = "README.rst"
description = "offset-free paging for sqlalchemy"
dependencies = [
"sqlalchemy>=1.3.11",
"python-dateutil>=2.0",
"packaging>=20.0",
"typing-extensions<5,>=4.7; python_version < '3.13'",
]
[project.urls]
homepage = "https://github.com/djrobstep/sqlakeyset"
repository = "https://github.com/djrobstep/sqlakeyset"
[dependency-groups]
dev = [
"sqlbag",
"pytest-clarity>=1.0.0",
"black>=19.10b0",
"sqlalchemy-utils>=0.37.0",
"toml<0.11,>=0.10.0",
"sqlalchemy[asyncio]<3.0.0,>=2.0.7",
"aiosqlite<1.0.0,>=0.18.0",
"aiomysql<1.0.0,>=0.1.1",
"pytest>=7.4.4",
"pytest-cov>=4.1.0",
"pytest-asyncio>=0.21.2",
"psycopg2-binary>=2.9.9",
"psycopg2-binary>=2.9.10; python_version >= '3.13'",
"asyncpg>=0.27.0",
"asyncpg>=0.30.0; python_version >= '3.12'",
"pymysql>=1.1.1",
"flake8>=3.9.2",
"flake8>=4; python_version >= '3.12'",
"pytz>=2024.2",
"arrow>=1.2.3",
"python-dateutil>=2.9.0.post0",
"psycopg[binary]>=3.2.12",
"pytest-xdist>=3.6.1",
]
doc = [
"sphinx>=5",
"sphinx-rtd-theme>=2",
]
[tool.uv.sources]
sqlbag = { git = "https://github.com/acarapetis/sqlbag.git", rev = "0a97a185070228b43cb86181e5df8051f46ebc86" }
[tool.pytest.ini_options]
filterwarnings = "ignore:.*cache_ok.*:::"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pyright]
venvPath = "."
venv = ".venv"
pythonVersion = "3.8"
typeCheckingMode = "standard"
[tool.ruff]
line-length = 88
[tool.ruff.lint]
extend-select = ["I"]