-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
72 lines (60 loc) · 1.52 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
67
68
69
70
71
72
[tool.pyright]
include = ["src"]
strict = ["src"]
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I", "D"]
ignore = ["D107"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.poetry]
name = "altqq"
version = "0.0.7"
description = "Alternative Queries: Typed and Reusable Handcrafted SQL"
authors = ["baluyotraf <baluyotraf@outlook.com>"]
maintainers = ["baluyotraf <baluyotraf@outlook.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/baluyotraf/altqq"
homepage = "https://altqq.baluyotraf.com"
keywords = ["database", "SQL"]
[tool.poetry.dependencies]
python = "^3.9"
pydantic = "^2.6.4"
[tool.poetry.group.dev.dependencies]
pyright = "^1.1.354"
pytest = "^8.1.1"
pytest-sugar = "^1.0.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
mike = "^2.0.0"
mkdocs = "^1.5.3"
mkdocstrings = { version="^0.24.1", extras = ["python"] }
mkdocs-include-markdown-plugin = "^6.0.4"
mkdocs-material = { version = "^9.5.14", extras = ["imaging"] }
[tool.pytest.ini_options]
minversion = 8.0
testpaths = ["tests"]
[tool.tox]
legacy_tox_ini = """
[tox]
min_version = 4.0
env_list = py{39,310,311,312}
[gh]
python =
3.12 = py312
3.11 = py311
3.10 = py310
3.9 = py39
[testenv]
description = run the tests with pytest
allowlist_externals =
poetry
commands_pre =
poetry install --no-root
commands =
pytest tests
"""
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"