forked from djrobstep/sqlakeyset
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (34 loc) · 997 Bytes
/
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
[tool.poetry]
name = "sqlakeyset"
version = "1.0"
authors = [ "Robert Lechte <[email protected]>", "Anthony Carapetis <[email protected]>" ]
license = "Unlicense"
readme = "README.rst"
description = "offset-free paging for sqlalchemy"
repository = "https://github.com/djrobstep/sqlakeyset"
homepage = "https://github.com/djrobstep/sqlakeyset"
[tool.poetry.dependencies]
python = ">=3.4"
sqlalchemy = ">=1.3.11"
python-dateutil = "*"
packaging = ">=20.0"
[tool.poetry.dev-dependencies]
sqlbag = "git+https://github.com/djrobstep/sqlbag.git@f4759318710ef33dc041710a6ff38f03d3c39b56"
pytest = "*"
pytest-cov = "*"
pytest-clarity = ">=0.3.0-alpha.0"
psycopg2-binary = "*"
pymysql = "*"
flake8 = "*"
isort = "*"
pytz = "*"
black = { version = ">=19.10b0", python=">=3.6" }
sqlalchemy_utils = "*"
arrow = "*"
toml = ">=0.10.0,<0.11"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
line_length = 88
[tool.pytest.ini_options]
filterwarnings = "ignore:.*cache_ok.*:::"