-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (45 loc) · 1.24 KB
/
Copy pathpyproject.toml
File metadata and controls
54 lines (45 loc) · 1.24 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
[project]
name = "litequeue"
version = "0.14"
description = "Simple queue built on top of SQLite"
readme = "README.md"
requires-python = ">=3.12"
license = { file = "LICENSE" }
authors = [{ name = "Ricardo Ander-Egg Aguilar", email = "rsubacc@gmail.com" }]
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = []
[project.urls]
Homepage = "https://github.com/litements/litequeue"
Repository = "https://github.com/litements/litequeue"
[dependency-groups]
dev = [
"mypy>=2.3.0",
"pytest>=8.1.1",
"ruff>=0.15.21",
"testcontainers>=4.14.2",
]
[tool.uv]
exclude-newer = "1 week"
exclude-newer-package = { litequeue = false }
[build-system]
requires = ["uv_build>=0.11.29,<0.12"]
build-backend = "uv_build"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff.lint.isort]
force-single-line = true
[tool.ruff.lint]
select = ["F", "I"]
extend-select = ["Q", "RUF018", "RUF100", "TID251", "UP"]
flake8-quotes = { inline-quotes = "double", multiline-quotes = "double" }
[tool.mypy]
pretty = true
show_error_codes = true
follow_untyped_imports = true
check_untyped_defs = true
no_implicit_optional = true
cache_fine_grained = true