-
Notifications
You must be signed in to change notification settings - Fork 51
/
pyproject.toml
66 lines (60 loc) · 1.65 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
[project]
authors = [
{name = "Robert Lechte", email = "[email protected]"},
{name = "Anthony Carapetis", email = "[email protected]"},
]
license = {text = "Unlicense"}
requires-python = ">=3.8"
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'",
"isort>=5.11.5",
"pytz>=2024.2",
"arrow>=1.2.3",
"python-dateutil>=2.9.0.post0",
]
doc = [
"sphinx>=5",
"sphinx-rtd-theme>=2",
]
[tool.uv.sources]
sqlbag = { git = "https://github.com/acarapetis/sqlbag.git", rev = "0a97a185070228b43cb86181e5df8051f46ebc86" }
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
line_length = 88
[tool.pytest.ini_options]
filterwarnings = "ignore:.*cache_ok.*:::"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"